Created
April 3, 2012 20:18
-
-
Save jamiew/2295246 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
$ cat deploy | |
#!/bin/sh | |
# any extra arguments are passed to `git push`, e.g. -f | |
app='vhx-artists' | |
remote='heroku' | |
git push $remote master $1 || exit $? | |
heroku run rake assets:precompile --app=$app || exit $? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment