Skip to content

Commit 995fc89

Browse files
committed
Fixes path used to find SDK
1 parent 182713f commit 995fc89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

search_sdks.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if [ $valid_flag -eq "0" ]; then
4343

4444
prompt="Select SDK to use:"
4545

46-
loc1=( $(find /Applications/XCode.app -type d -name "MacOSX10.*.sdk") )
46+
loc1=( $(find /Applications/Xcode.app -type l -name "MacOSX10.*.sdk") )
4747
loc2=( $(find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.*.sdk") )
4848

4949
options=("${loc1[@]}" "${loc2[@]}")

0 commit comments

Comments
 (0)