We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61bf64f commit db74af3Copy full SHA for db74af3
1 file changed
.github/workflows/install-dependencies.sh
@@ -172,7 +172,18 @@ case $LIB_NAME in
172
fi
173
;;
174
dvdnav)
175
- ./main.sh install -l 'dvdread' -p $PLAT
+ if [[ $PLAT == all ]];then
176
+ ./main.sh install -l 'dvdread' -p ios
177
+ ./main.sh install -l 'dvdread' -p tvos
178
+ ./main.sh install -l 'dvdread' -p macos
179
+ ./main.sh install -l 'dvdread' -p android
180
+ elif [[ $PLAT == apple ]];then
181
182
183
184
+ else
185
+ ./main.sh install -l 'dvdread' -p $PLAT
186
+ fi
187
188
*)
189
0 commit comments