Adding an upgrade_oh_my_zsh function to... well, upgrade Oh My Zsh
This commit is contained in:
parent
dff23da1be
commit
cde57ba9a7
@ -32,6 +32,10 @@ function uninstall_oh_my_zsh() {
|
|||||||
/bin/sh $ZSH/tools/uninstall.sh
|
/bin/sh $ZSH/tools/uninstall.sh
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function upgrade_oh_my_zsh() {
|
||||||
|
/bin/sh $ZSH/tools/upgrade.sh
|
||||||
|
}
|
||||||
|
|
||||||
function tab() {
|
function tab() {
|
||||||
osascript 2>/dev/null <<EOF
|
osascript 2>/dev/null <<EOF
|
||||||
tell application "System Events"
|
tell application "System Events"
|
||||||
|
5
tools/upgrade.sh
Normal file
5
tools/upgrade.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
current_path=`pwd`
|
||||||
|
echo "Upgrading Oh My Zsh"
|
||||||
|
( cd $ZSH && git pull origin master )
|
||||||
|
echo "Done."
|
||||||
|
cd $current_path
|
Reference in New Issue
Block a user