From 9239c1d172a656af481c1f35aa799a6a3aa1d470 Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Fri, 23 Sep 2011 14:29:33 -0500 Subject: [PATCH] Add deploy script to ease uploading the zipfile --- script/deploy.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 script/deploy.sh diff --git a/script/deploy.sh b/script/deploy.sh new file mode 100755 index 0000000..2d9d20e --- /dev/null +++ b/script/deploy.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +git push +zip -r clojure-koans-`date +"%Y-%m-%d"`.zip . -x "./.git/*" + +echo +echo "Don't forget to upload the zipfile!" +echo `ls -tr clojure-koans-*.zip | head -n1`