diff options
author | Mattia Rizzolo <mattia@debian.org> | 2016-03-29 21:34:41 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-03-29 17:35:50 -0400 |
commit | 0330133974fef6d4ab8c00ead64ee0f49127f0f0 (patch) | |
tree | 57b7a7700b4d1bf09b3326c88d92a95886008cec | |
parent | b5b167ec2976d4d14fd473587b4a339ce17ff52b (diff) | |
download | jenkins.debian.net-0330133974fef6d4ab8c00ead64ee0f49127f0f0.tar.xz |
reproducible: blacklist: add i386 to the lists of archs here too
-rwxr-xr-x | bin/reproducible_blacklist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_blacklist.sh b/bin/reproducible_blacklist.sh index a75bcd1a..46641515 100755 --- a/bin/reproducible_blacklist.sh +++ b/bin/reproducible_blacklist.sh @@ -59,7 +59,7 @@ explain_syntax() { set +x ARCH="$1" shift -if [ "$ARCH" != "amd64" ] && [ "$ARCH" != "armhf" ] ; then +if [ "$ARCH" != "amd64" ] && [ "$ARCH" != "armhf" ] && [ "$ARCH" != "i386" ]; then explain_syntax exit 1 fi |