summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-13 13:26:11 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-13 13:26:11 +0200
commitbe8d0fedacc39c3dfa8aaadb622ea0197803d3c8 (patch)
tree327f1f9b9752cd56f89e664cdbdbced720df994c /bin
parentd4819730d976cfc80d3e0a6a1513dbc0ced863e4 (diff)
downloadjenkins.debian.net-be8d0fedacc39c3dfa8aaadb622ea0197803d3c8.tar.xz
reproducible: be less verbose
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_setup.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/reproducible_setup.sh b/bin/reproducible_setup.sh
index 9bd0b341..03fd4972 100755
--- a/bin/reproducible_setup.sh
+++ b/bin/reproducible_setup.sh
@@ -41,11 +41,14 @@ cat >/var/lib/jenkins/reproducible.init <<-EOF
.timeout 60000
EOF
+set +x
# blacklist some packages
for PKG in linux cups zurl openclipart eigen3 xmds2 ; do
RESULT=$(sqlite3 -init $INIT $PACKAGES_DB " SELECT name FROM source_packages WHERE status = 'blacklisted' AND name = '$PKG'")
if [ "$RESULT" = "" ] ; then
+ set -x
sqlite3 -init $INIT $PACKAGES_DB "REPLACE into source_packages VALUES ('$PKG','0','blacklisted',date('now'))"
+ set +x
fi
done