diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-05 02:51:39 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-05 02:51:39 +0200 |
commit | b9757fffefaf4ff7b614afe7af990c701be880c8 (patch) | |
tree | bf2ce81f344a109d01965b78c05ca39710d619ae | |
parent | d25c588b5537dbe157c8d06a57cecd0a149a71e0 (diff) | |
download | jenkins.debian.net-b9757fffefaf4ff7b614afe7af990c701be880c8.tar.xz |
reproducible: add 'blacklisted' as possible value for table in db
-rwxr-xr-x | bin/reproducible_setup.sh | 2 |
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} ' |