1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

[plugins/xcode] Fix opening project using a wrong Xcode version (#6829)

This commit is contained in:
Thi 2018-07-20 00:20:45 +09:00 committed by Marc Cornellà
parent 626b30b2a3
commit 6ca57e035c

View file

@ -22,8 +22,11 @@ function xc {
fi
return 1
else
echo "Found ${xcode_proj[1]}"
open "${xcode_proj[1]}"
local active_path
active_path=$(xcode-select -p)
active_path=${active_path%%/Contents/Developer*}
echo "Found ${xcode_proj[1]}. Opening with ${active_path}"
open -a "$active_path" "${xcode_proj[1]}"
fi
}