From acca7513bba0b983326bc8350a1ec01dc10d82bd Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Tue, 25 Jan 2011 11:11:24 -0500 Subject: [PATCH] Rakefile : zip to desktop --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 461a4d7..4f32eb6 100644 --- a/Rakefile +++ b/Rakefile @@ -22,14 +22,14 @@ task :min do end end -desc "Zips _site/ into isotope-site.zip" +desc "Zips _site/ into isotope-site.zip on to Desktop" task :zip do # makes isotope-site/ directory sh 'mkdir isotope-site;' # copies _site/ sh 'cp -r _site/ isotope-site;' # zips isotope-site/ - sh 'zip -r isotope-site isotope-site/;' + sh 'zip -r ~/Desktop/isotope-site.zip isotope-site/;' # removes isotope-site/ sh 'rm -rf isotope-site;' end \ No newline at end of file