aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorParker Moore <parkrmoore@gmail.com>2014-10-03 17:42:16 -0700
committerParker Moore <parkrmoore@gmail.com>2014-10-03 17:42:16 -0700
commitc434de5977c316c8406c00bb24221fa61ca8fe88 (patch)
tree850209c590c9e2f6e03165f8d6e7dfb99795bf5e /Rakefile
parent6bd719fd96a0d03318ef25c1b3cd79abe0e4525b (diff)
parent9b43210b8a72bd277004bf9633f4e36c27209ec0 (diff)
downloadmy_new_personal_website-c434de5977c316c8406c00bb24221fa61ca8fe88.tar.xz
my_new_personal_website-c434de5977c316c8406c00bb24221fa61ca8fe88.zip
Merge pull request #1658 from kamatari/fix-rake-clean
enable wildcard of rm_rf
Diffstat (limited to '')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 81a03dfd..f7084dab 100644
--- a/Rakefile
+++ b/Rakefile
@@ -175,7 +175,7 @@ end
desc "Clean out caches: .pygments-cache, .gist-cache, .sass-cache"
task :clean do
- rm_rf [".pygments-cache/**", ".gist-cache/**", ".sass-cache/**", "source/stylesheets/screen.css"]
+ rm_rf [Dir.glob(".pygments-cache/**"), Dir.glob(".gist-cache/**"), Dir.glob(".sass-cache/**"), "source/stylesheets/screen.css"]
end
desc "Move sass to sass.old, install sass theme updates, replace sass/custom with sass.old/custom"