We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e512195 commit 3c16668Copy full SHA for 3c16668
1 file changed
build-static.sh
@@ -153,7 +153,12 @@ fi
153
if [ "${SPC_REL_TYPE}" = "binary" ]; then
154
mkdir -p static-php-cli/
155
cd static-php-cli/
156
- curl -o spc -fsSL "https://dl.static-php.dev/static-php-cli/spc-bin/nightly/spc-linux-${arch}"
+ if [[ "${arch}" =~ "arm" ]]; then
157
+ dl_arch="aarch64"
158
+ else
159
+ dl_arch="${arch}"
160
+ fi
161
+ curl -o spc -fsSL "https://dl.static-php.dev/static-php-cli/spc-bin/nightly/spc-linux-${dl_arch}"
162
chmod +x spc
163
spcCommand="./spc"
164
elif [ -d "static-php-cli/src" ]; then
0 commit comments