We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04cfa7f commit 06db64eCopy full SHA for 06db64e
ci/action.yml
@@ -16,7 +16,11 @@ runs:
16
export CI_SCRIPTS_PATH="$GITHUB_ACTION_PATH"
17
18
source $GITHUB_ACTION_PATH/common.sh
19
- bash $GITHUB_ACTION_PATH/download_sdk.sh
+ if [ $OS_NAME = 'osx' ]; then
20
+ if [[ ! -d $HOME/sdk/MacOSX10.9.sdk ]]; then
21
+ git clone https://github.com/phracker/MacOSX-SDKs $HOME/sdk
22
+ fi
23
24
bash $GITHUB_ACTION_PATH/install.sh
25
set -x
26
if [ $SCRIPT ]; then
ci/download_sdk.sh
0 commit comments