diff options
-rwxr-xr-x | ci/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/build.sh b/ci/build.sh index 4e45262c..0fa6238e 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -57,9 +57,9 @@ fi for distro in $CONTAINERS; do - base_dockerfile=ci/Dockerfile/$distro.`arch` + base_dockerfile=ci/Dockerfile/$distro.`uname -m` if [ ! -f $base_dockerfile ]; then - echo '$distro not supported on `arch`.'; + echo "$distro not supported on $(uname -m)."; continue fi if [[ -n "$HTTP_PROXY" ]]; then |