Return error if no xcode files where found

This commit is contained in:
Marc Cornellà 2015-09-04 01:43:48 +02:00
parent cbdad588e6
commit 6a830f39b6

View File

@ -2,8 +2,10 @@
function xc {
local xcode_proj
xcode_proj=(*.{xcworkspace,xcodeproj}(N))
if [[ ${#xcode_proj} -eq 0 ]]; then
echo "No xcworkspace/xcodeproj file found in the current directory."
return 1
else
echo "Found ${xcode_proj[1]}"
open "${xcode_proj[1]}"