Skip to content

Commit 301bda2

Browse files
committed
Linux workflow: fix arch test
1 parent 1920092 commit 301bda2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
set -ux
5959
# download arm64 package lists to install cross build-dependencies
60-
if "$(dpkg --print-architecture != arm64)"; then
60+
if [ "$(dpkg --print-architecture)" != arm64 ]; then
6161
dpkg --add-architecture arm64
6262
apt update
6363
fi

0 commit comments

Comments
 (0)