Skip to content

Commit a3c69f6

Browse files
committed
Fix comparison
1 parent 33dbbf0 commit a3c69f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ docker run --rm \
9191
# outside CI environments, we use APPIMAGE_EXTRACT_AND_RUN instead, which is safer, but gives less meaningful results
9292
# note: FUSE and QEMU don't like each other, so if we're running in emulated mode, we can't run these tests
9393
# therefore, by default, on ARM, these tests are not run
94-
if [[ "$ARCH" == "arm"* ]] || [[ "$ARCH" == "aarch"* ]]; then
94+
if [[ "$ARCH" != "arm"* ]] && [[ "$ARCH" != "aarch"* ]]; then
9595
docker_test_opts=("${common_docker_opts[@]}")
9696

9797
if [[ "$CI" != "" ]]; then

0 commit comments

Comments
 (0)