Add warn message if XCode is not installed

pull/22/head
Dominik Ritter 8 years ago
parent aa26c73521
commit 1ac59158ed

@ -6,6 +6,11 @@ if [[ "$TERM_PROGRAM" != "iTerm.app" ]]; then
exit 1 exit 1
fi fi
if [[ ! -x "/usr/libexec/PlistBuddy" ]]; then
print "To use this debug script, you need to install XCode!"
exit 1
fi
local normalFont local normalFont
local type local type
local command local command

Loading…
Cancel
Save