summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-05 02:51:39 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-05 02:51:39 +0200
commitb9757fffefaf4ff7b614afe7af990c701be880c8 (patch)
treebf2ce81f344a109d01965b78c05ca39710d619ae /bin
parentd25c588b5537dbe157c8d06a57cecd0a149a71e0 (diff)
downloadjenkins.debian.net-b9757fffefaf4ff7b614afe7af990c701be880c8.tar.xz
reproducible: add 'blacklisted' as possible value for table in db
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_setup.sh b/bin/reproducible_setup.sh
index c3433694..4e38ddca 100755
--- a/bin/reproducible_setup.sh
+++ b/bin/reproducible_setup.sh
@@ -14,7 +14,7 @@ if [ ! -f ${PACKAGES_DB} ] ; then
(name TEXT NOT NULL,
version TEXT NOT NULL,
status TEXT NOT NULL
- CHECK (status IN ("FTBFS","reproducible","unreproducible","404", "not for us")),
+ CHECK (status IN ("blacklisted", "FTBFS","reproducible","unreproducible","404", "not for us")),
build_date TEXT NOT NULL,
PRIMARY KEY (name))'
sqlite3 ${PACKAGES_DB} '