mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Return error if no xcode files where found
This commit is contained in:
parent
cbdad588e6
commit
6a830f39b6
1 changed files with 2 additions and 0 deletions
|
@ -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]}"
|
||||
|
|
Loading…
Reference in a new issue