diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-02-24 10:30:39 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-02-24 10:30:39 +0100 |
commit | 8cfcacc84e11013ace34d261919e3cec388975a3 (patch) | |
tree | fecbff2afd2abca685fa01a303ee37720f5f4d34 /bin/reproducible_schedule_on_demand.sh | |
parent | f5a00e5c5c367818266015abe99a38aecc9b23fc (diff) | |
download | jenkins.debian.net-8cfcacc84e11013ace34d261919e3cec388975a3.tar.xz |
Revert "enable debugging"
This reverts commit f5a00e5c5c367818266015abe99a38aecc9b23fc.
Diffstat (limited to 'bin/reproducible_schedule_on_demand.sh')
-rwxr-xr-x | bin/reproducible_schedule_on_demand.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/reproducible_schedule_on_demand.sh b/bin/reproducible_schedule_on_demand.sh index db003cf7..5b4f3ea0 100755 --- a/bin/reproducible_schedule_on_demand.sh +++ b/bin/reproducible_schedule_on_demand.sh @@ -3,7 +3,7 @@ # Copyright 2014 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 -DEBUG=true +DEBUG=false . /srv/jenkins/bin/common-functions.sh common_init "$@" @@ -30,13 +30,11 @@ check_candidates() { PACKAGES="" TOTAL=0 for PKG in $CANDIDATES ; do - echo "checking $PKG" RESULT=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT name from sources WHERE name = '$PKG';") if [ ! -z "$RESULT" ] ; then PACKAGES="$PACKAGES $RESULT" let "TOTAL+=1" fi - echo "Debug: $PKG $RESULT" done case $TOTAL in 0) |