Skip to content

Commit aca4b58

Browse files
committed
fix denpendencies not install bug
1 parent 108cafd commit aca4b58

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/all.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ jobs:
6262
fi
6363
echo '------compile harfbuzz------------------------------------'
6464
rm -rf build || git reset --hard || git pull origin
65-
.github/workflows/install-denpendencies.sh harfbuzz ${{ inputs.platform }}
65+
.github/workflows/install-dependencies.sh harfbuzz ${{ inputs.platform }}
6666
.github/workflows/onestep.sh harfbuzz ${{ inputs.platform }}
6767
echo '------compile ass------------------------------------'
6868
rm -rf build || git reset --hard || git pull origin
69-
.github/workflows/install-denpendencies.sh ass ${{ inputs.platform }}
69+
.github/workflows/install-dependencies.sh ass ${{ inputs.platform }}
7070
.github/workflows/onestep.sh ass ${{ inputs.platform }}
7171
echo '------compile opus------------------------------------'
7272
rm -rf build || git reset --hard || git pull origin
@@ -79,7 +79,7 @@ jobs:
7979
.github/workflows/onestep.sh dvdread ${{ inputs.platform }}
8080
echo '------compile bluray------------------------------------'
8181
rm -rf build || git reset --hard || git pull origin
82-
.github/workflows/install-denpendencies.sh fontconfig ${{ inputs.platform }}
82+
.github/workflows/install-dependencies.sh fontconfig ${{ inputs.platform }}
8383
.github/workflows/onestep.sh bluray ${{ inputs.platform }}
8484
echo '------compile dav1d------------------------------------'
8585
rm -rf build || git reset --hard || git pull origin
@@ -92,7 +92,7 @@ jobs:
9292
.github/workflows/onestep.sh smb2 ${{ inputs.platform }}
9393
echo '------compile ffmpeg------------------------------------'
9494
rm -rf build || git reset --hard || git pull origin
95-
.github/workflows/install-denpendencies.sh ffmpeg ${{ inputs.platform }}
95+
.github/workflows/install-dependencies.sh ffmpeg ${{ inputs.platform }}
9696
.github/workflows/onestep.sh ffmpeg ${{ inputs.platform }}
9797
env:
9898
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

.github/workflows/apple-android-common.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
local-cache: false
7070
- name: Checkout code
7171
uses: actions/checkout@v4
72-
- name: Install denpendencies
73-
run: .github/workflows/install-denpendencies.sh ${{ inputs.lib }} ${{ inputs.platform }}
72+
- name: Install dependencies
73+
run: .github/workflows/install-dependencies.sh ${{ inputs.lib }} ${{ inputs.platform }}
7474
- name: One Step
7575
run: .github/workflows/onestep.sh ${{ inputs.lib }} ${{ inputs.platform }}
7676
env:

.github/workflows/install-denpendencies.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
set -e
44

5-
export LIB_NAME=$1
6-
export PLAT=$2
5+
LIB_NAME=$1
6+
PLAT=$2
77

8-
case LIB_NAME in
8+
case $LIB_NAME in
99
ass)
1010
if [[ $PLAT == all ]];then
1111
./main.sh install -l 'harfbuzz fribidi unibreak' -p ios
1212
./main.sh install -l 'harfbuzz fribidi unibreak' -p tvos
1313
./main.sh install -l 'harfbuzz fribidi unibreak' -p macos
1414
./main.sh install -l 'harfbuzz fribidi unibreak fontconfig' -p android
15-
elif [[ $PLAT == apple ]];then
15+
elif [[ $PLAT == apple ]];then
1616
./main.sh install -l 'harfbuzz fribidi unibreak' -p ios
1717
./main.sh install -l 'harfbuzz fribidi unibreak' -p tvos
1818
./main.sh install -l 'harfbuzz fribidi unibreak' -p macos
@@ -35,7 +35,7 @@ case LIB_NAME in
3535
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p ios
3636
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p macos
3737
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p android
38-
elif [[ $PLAT == apple ]];then
38+
elif [[ $PLAT == apple ]];then
3939
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p tvos
4040
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p ios
4141
./main.sh install -l 'openssl opus dav1d dvdread uavs3d smb2 bluray' -p macos

0 commit comments

Comments
 (0)