diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-23 20:43:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-23 20:43:20 +0100 |
commit | e0d80d0287977a9a992fb2c47ca0ed21ec727aab (patch) | |
tree | d176a95721361d5e0aae852ad9d44ed963cdd3b5 /bin | |
parent | 407574e001cdf2c302ad72e42349e6d386bd04b7 (diff) | |
download | jenkins.debian.net-e0d80d0287977a9a992fb2c47ca0ed21ec727aab.tar.xz |
reproducible Debian: support arm64
Diffstat (limited to 'bin')
-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 5e94e962..fd13cfda 100755 --- a/bin/reproducible_blacklist.sh +++ b/bin/reproducible_blacklist.sh @@ -64,7 +64,7 @@ explain_syntax() { set +x ARCH="$1" shift -if [ "$ARCH" != "amd64" ] && [ "$ARCH" != "armhf" ] && [ "$ARCH" != "i386" ]; then +if [ "$ARCH" != "amd64" ] && [ "$ARCH" != "armhf" ] && [ "$ARCH" != "i386" ] || [ "$ARCH" != "arm64" ] ; then explain_syntax exit 1 fi |