Skip to content

Commit

Permalink
Don't link AppleArchive as doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Mar 8, 2024
1 parent 113bd4c commit dcc83db
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,11 @@ jobs:
for file in $(xcrun --show-sdk-path)/usr/include/*
do
if [ ! -f /usr/local/include/$(basename $file) ]; then
ln -s $file /usr/local/include/$(basename $file)
if [[ "${file}" == "AppleArchive" ]]; then
else
ln -s $file /usr/local/include/$(basename $file)
fi
fi
done
# We need PATH_TO_LLVM_BUILD later
Expand Down

0 comments on commit dcc83db

Please sign in to comment.