diff options
author | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-18 13:45:25 +0200 |
---|---|---|
committer | Frederic Hemberger <mail@frederic-hemberger.de> | 2011-09-18 13:45:25 +0200 |
commit | f6bf89438702776896aee21cf839689355bbe203 (patch) | |
tree | ff54fc14d27e8f1fff08a9d4ff23b799b61a525d /Rakefile | |
parent | 41cbe7825149d1cbf97890ff1e59aac190a502ba (diff) | |
download | my_new_personal_website-f6bf89438702776896aee21cf839689355bbe203.tar.xz my_new_personal_website-f6bf89438702776896aee21cf839689355bbe203.zip |
Aligns naming of .pygments-cache, .gist-cache and .sass-cache
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -156,9 +156,9 @@ task :integrate do FileUtils.mv Dir.glob("#{source_dir}/#{stash_dir}/*.*"), "#{source_dir}/#{posts_dir}/" end -desc "Clean out caches: _code_cache, _gist_cache, .sass-cache" +desc "Clean out caches: .pygments-cache, .gist-cache, .sass-cache" task :clean do - rm_rf ["_code_cache/**", "_gist_cache/**", ".sass-cache/**", "source/stylesheets/screen.css"] + rm_rf [".pygments-cache/**", ".gist-cache/**", ".sass-cache/**", "source/stylesheets/screen.css"] end desc "Move sass to sass.old, install sass theme updates, replace sass/custom with sass.old/custom" |