File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ jobs:
170170 run : |
171171 EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
172172 echo "install_deps<<$EOF" >> $GITHUB_OUTPUT
173- cat ./script/install-deps.bash >> $GITHUB_OUTPUT
173+ cat ./script/install-deps.sh >> $GITHUB_OUTPUT
174174 echo "$EOF" >> $GITHUB_OUTPUT
175175
176176 - name : Build Linux Arm64
Original file line number Diff line number Diff line change 1- #! /bin/bash
1+ #! /bin/sh
22
33set -x
44
55# Ubuntu/Debian
66apt=$( command -v apt-get || true)
7- if [[ -n $apt ] ]; then
7+ if [ -n " $apt " ]; then
88 apt-get update -q -y
99 apt-get install --no-install-recommends -y \
1010 bash \
3030
3131# Alpine Linux
3232apk=$( command -v apk || true)
33- if [[ -n $apk ] ]; then
33+ if [ -n " $apk " ]; then
3434 apk update
3535 apk add --no-cache bash build-base curl git g++ make ninja-build pkgconfig unzip zip python3 tar cmake musl-dev automake autoconf libtool nodejs npm
3636 cp /usr/lib/ninja-build/bin/ninja /usr/bin/ninja
3737fi
3838
3939# Fedora/RHEL
4040dnf=$( command -v dnf || true)
41- if [[ -n $dnf ] ]; then
41+ if [ -n " $dnf " ]; then
4242 dnf update -q -y
4343 dnf install -y \
4444 bash \
You can’t perform that action at this time.
0 commit comments