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 0b61e33 commit 0fbd6bbCopy full SHA for 0fbd6bb
src/ci/scripts/select-xcode.sh
@@ -16,6 +16,8 @@ if isMacOS; then
16
echo "Using xcode 16? Please fix xcode-select.sh"
17
exit 1
18
fi
19
- sudo rm -rf "${old_xcode}/../../"
+ old_xcode="${old_xcode%/*}" # pop a dir
20
+ old_xcode="${old_xcode%/*}" # twice
21
+ sudo rm -rf "${old_xcode}"
22
sudo xcode-select -s "${SELECT_XCODE}"
23
0 commit comments