diff options
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index b2dbead8..ff3c177b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -428,7 +428,7 @@ init_package_build() { # stale_builds.txt is mailed once a day by reproducible_maintenance.sh echo "$(date -u) - stale builds found, cleaning db from these:" | tee -a /var/lib/jenkins/stale_builds.txt cat $BAD_BUILDS | tee -a /var/lib/jenkins/stale_builds.txt - sqlite3 -init $INIT ${PACKAGES_DB} "UPDATE schedule SET date_build_started='' WHERE builder LIKE '${BUILDER_PREFIX}%'" + sqlite3 -init $INIT ${PACKAGES_DB} "UPDATE schedule SET date_build_started='', builder='' WHERE builder LIKE '${BUILDER_PREFIX}%'" echo >> /var/lib/jenkins/stale_builds.txt fi rm -f $BAD_BUILDS |