summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-27 02:34:29 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-02-27 02:34:29 +0100
commitb6167e82b446986055dd1889fd2c33e2c1db6368 (patch)
tree86a106b44ae7e5acc287eb58731031e902f9b44a /bin
parentfa77ed19af7885d53182f0a21d70f639d93efcd9 (diff)
downloadjenkins.debian.net-b6167e82b446986055dd1889fd2c33e2c1db6368.tar.xz
reproducible: maintainance: fix a quoting issue
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_maintainance.sh2
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