10 lines
228 B
Bash
10 lines
228 B
Bash
|
#!/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
|