We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835401a commit 8e245ccCopy full SHA for 8e245cc
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