grub-fork/deploy.sh

10 lines
228 B
Bash
Raw Normal View History

2014-01-12 16:59:46 +00:00
#!/bin/bash
git branch -D deploy
git checkout -b deploy
lein cljsbuild once prod
git add --force public/js/grub.js
git commit -m "Add client code for Heroku deployment"
git push --force heroku deploy:master
git checkout master