diff options
author | Parker Moore <parkrmoore@gmail.com> | 2014-10-03 17:42:16 -0700 |
---|---|---|
committer | Parker Moore <parkrmoore@gmail.com> | 2014-10-03 17:42:16 -0700 |
commit | c434de5977c316c8406c00bb24221fa61ca8fe88 (patch) | |
tree | 850209c590c9e2f6e03165f8d6e7dfb99795bf5e /Rakefile | |
parent | 6bd719fd96a0d03318ef25c1b3cd79abe0e4525b (diff) | |
parent | 9b43210b8a72bd277004bf9633f4e36c27209ec0 (diff) | |
download | my_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-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |