9 lines
228 B
Bash
Executable file
9 lines
228 B
Bash
Executable file
#!/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
|