Created
March 30, 2015 15:16
-
-
Save degnome/cf57bd8f2aa77bdd3fba to your computer and use it in GitHub Desktop.
Simple Deploy Script
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 | |
| rm -R -f azure | |
| git clone {azure repo url} azure | |
| rm -R azure/* | |
| cp -R -f build/* azure/ | |
| cd azure | |
| git add -A | |
| git commit -m "Code Shipped" | |
| git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment