Unverified Commit cacfcb27 authored by dima.avdeev's avatar dima.avdeev Committed by GitHub

build-with-local-skia.sh, fix bash array (#836)

parent a7cb9eb3
...@@ -36,7 +36,7 @@ case $SKIA_TARGET in ...@@ -36,7 +36,7 @@ case $SKIA_TARGET in
"macos") "macos")
SKIKO_TARGET_FLAGS="-Pskiko.awt.enabled=true" SKIKO_TARGET_FLAGS="-Pskiko.awt.enabled=true"
if [[ $(uname -m) == 'arm64' ]]; then if [[ $(uname -m) == 'arm64' ]]; then
skikoMachines=("arm64" , "x64") # spaces around comma matters skikoMachines=("arm64" "x64") # bash arrays split elements by spaces
else else
skikoMachines=("x64") skikoMachines=("x64")
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment