diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-27 02:34:29 +0100 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-02-27 02:34:29 +0100 |
commit | b6167e82b446986055dd1889fd2c33e2c1db6368 (patch) | |
tree | 86a106b44ae7e5acc287eb58731031e902f9b44a | |
parent | fa77ed19af7885d53182f0a21d70f639d93efcd9 (diff) | |
download | jenkins.debian.net-b6167e82b446986055dd1889fd2c33e2c1db6368.tar.xz |
reproducible: maintainance: fix a quoting issue
-rwxr-xr-x | bin/reproducible_maintainance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintainance.sh b/bin/reproducible_maintainance.sh index 8def64d0..6f3a875b 100755 --- a/bin/reproducible_maintainance.sh +++ b/bin/reproducible_maintainance.sh @@ -143,7 +143,7 @@ if grep -q '|' $PACKAGES ; then echo for PKG in $(cat $PACKAGES | cut -d "|" -f1) ; do echo "sqlite3 ${PACKAGES_DB} \"DELETE FROM schedule WHERE package_id = '$PKG';\"" - sqlite3 -init $INIT ${PACKAGES_DB} \"DELETE FROM schedule WHERE package_id = '$PKG';\" + sqlite3 -init $INIT ${PACKAGES_DB} "DELETE FROM schedule WHERE package_id = '$PKG';" done echo "Packages have been removed from scheduling." echo |