summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@debian.org>2016-12-19 15:00:32 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-19 15:02:34 +0100
commit2bf4a24cafcb0273a79aa1b11b6f2425f65eba29 (patch)
tree82279e35fdebdb6b07777489ca62f36b89fd077d /bin
parent3d5599971e80226ad75d9e6c42e8e8446e51c8e8 (diff)
downloadjenkins.debian.net-2bf4a24cafcb0273a79aa1b11b6f2425f65eba29.tar.xz
reproducible debian: build: don't quote integer in SQL
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 52f40d48..0984235f 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -310,7 +310,7 @@ handle_reproducible() {
unregister_build() {
# unregister this build so it will immeditiatly tried again
- query_db "UPDATE schedule SET date_build_started = NULL, job = NULL WHERE package_id='$SRCPKGID'"
+ query_db "UPDATE schedule SET date_build_started = NULL, job = NULL WHERE package_id=$SRCPKGID"
NOTIFY=""
}