Last active
August 29, 2015 14:16
-
-
Save Spoygg/71cc30df244a093b4eb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
case "$1" in | |
"IncsubVagrant") cd ~/IncsubProjects | |
echo "Bringing Vagrant up... " | |
vagrant up | |
fish | |
;; | |
"Upfront") cd ~/IncsubProjects/www/wordpress-default/wp-content/themes/upfront | |
echo "Checking out newest Upfront..." | |
git pull --rebase | |
fish | |
;; | |
"Themes") cd ~/IncsubProjects/www/wordpress-default/wp-content/themes | |
fish | |
;; | |
"Plugins") cd ~/IncsubProjects/www/wordpress-default/wp-content/plugins | |
fish | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment