Skip to content

Commit

Permalink
Tweak deploy script to allow for multiple zipfiles per day
Browse files Browse the repository at this point in the history
  • Loading branch information
trptcolin committed Sep 23, 2011
1 parent 652cc6d commit c2d99c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/deploy.sh
@@ -1,8 +1,8 @@
#!/bin/sh

git push
zip -r clojure-koans-`date +"%Y-%m-%d"`.zip . -x "./.git/*"
zip -r clojure-koans-`date +"%Y-%m-%d_%H-%M"`.zip . -x "./.git/*"

echo
echo "Don't forget to upload the zipfile!"
echo `ls -tr clojure-koans-*.zip | head -n1`
echo `ls -t clojure-koans-*.zip | head -n1`

0 comments on commit c2d99c3

Please sign in to comment.