summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-12-23 11:21:31 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-23 11:21:31 +0100
commitfcaa917278de1593ce737a95b5fdb9d210f10e85 (patch)
treef6b888ab580210523ce366e469aa0253767ea933 /bin/reproducible_build.sh
parent42df091e92b84c472d9faa9ca458bf3df8f5faa6 (diff)
downloadjenkins.debian.net-fcaa917278de1593ce737a95b5fdb9d210f10e85.tar.xz
reproducible Debian: fix syntax error
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index bc97cf2d..92b73bf5 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -588,7 +588,7 @@ check_suitability() {
break
fi
# special case arm…
- if ( [ "$ARCH" = "armhf" ] || "$ARCH" = "arm64" ] ) && [ "$arch" = "any-arm" ] ; then
+ if ( [ "$ARCH" = "armhf" ] || [ "$ARCH" = "arm64" ] ) && [ "$arch" = "any-arm" ] ; then
SUITABLE=true
break
fi