aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorB Mathis <brandon@imathis.com>2009-11-13 02:35:40 -0600
committerB Mathis <brandon@imathis.com>2009-11-13 02:35:40 -0600
commit3e69c6be8bca045b432ca20211b4aadd7df8dd5d (patch)
tree2013e8d8b5a0a3e17edc81e7ddede029b1996784 /Rakefile
parent0d602515cc6809d8c42919906a934be837f28901 (diff)
downloadmy_new_personal_website-3e69c6be8bca045b432ca20211b4aadd7df8dd5d.tar.xz
my_new_personal_website-3e69c6be8bca045b432ca20211b4aadd7df8dd5d.zip
fixed the deploy rake task so it will delete the debug pages
Diffstat (limited to '')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 8375eb41..d8d07c9e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -37,7 +37,7 @@ end
task :clean_debug do
puts ">>> Removing debug pages <<<"
- Dir["#{site}/debug"].each { |f| rm_rf(f) }
+ Dir["#{site}/test"].each { |f| rm_rf(f) }
end
desc "Generate styles only"