Fix builddepcheck syntax
authorChristoph Berg <myon@debian.org>
Mon, 15 Jan 2024 12:38:30 +0000 (13:38 +0100)
committerChristoph Berg <myon@debian.org>
Mon, 15 Jan 2024 12:38:30 +0000 (13:38 +0100)
jenkins/builddebcheck-pgapt

index 681dcd67532d49bd255dc8dea2a20e7458098574..c017ee34cc5830db10e3ea987bfe847d5f57cd57 100755 (executable)
@@ -38,7 +38,7 @@ remove_packages ()
   shift
   for pkg in "$@"; do
     TMP="$FILE.$$"
-    grep-dctrl --eregex --not -S "$pkg" $FILE > $TMP
+    grep-dctrl --not -S --eregex "$pkg" $FILE > $TMP
     mv $TMP $FILE
   done
 }