mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-01-11 16:56:45 +01:00
Add warn message if XCode is not installed
This commit is contained in:
parent
aa26c73521
commit
1ac59158ed
1 changed files with 5 additions and 0 deletions
|
@ -6,6 +6,11 @@ if [[ "$TERM_PROGRAM" != "iTerm.app" ]]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -x "/usr/libexec/PlistBuddy" ]]; then
|
||||
print "To use this debug script, you need to install XCode!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
local normalFont
|
||||
local type
|
||||
local command
|
||||
|
|
Loading…
Reference in a new issue