diff options
author | Masahiro Kamata <8.incidents.sr.9@gmail.com> | 2014-10-04 08:56:28 +0900 |
---|---|---|
committer | Masahiro Kamata <8.incidents.sr.9@gmail.com> | 2014-10-04 08:56:28 +0900 |
commit | 9b43210b8a72bd277004bf9633f4e36c27209ec0 (patch) | |
tree | 850209c590c9e2f6e03165f8d6e7dfb99795bf5e /Rakefile | |
parent | 6bd719fd96a0d03318ef25c1b3cd79abe0e4525b (diff) | |
download | my_new_personal_website-9b43210b8a72bd277004bf9633f4e36c27209ec0.tar.xz my_new_personal_website-9b43210b8a72bd277004bf9633f4e36c27209ec0.zip |
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" |