diff options
author | Blake Johnson <blake41@@gmail.com> | 2013-07-15 12:10:35 -0400 |
---|---|---|
committer | Blake Johnson <blake41@@gmail.com> | 2013-07-15 12:10:35 -0400 |
commit | b19dbff510f776f7d395d4f4de609e13cec84697 (patch) | |
tree | ec9e87ae32446319f7fc007df4d27b64ab20bebc | |
parent | 2432f9997ba42a19479697059e69805e5aaec582 (diff) | |
download | my_new_personal_website-b19dbff510f776f7d395d4f4de609e13cec84697.tar.xz my_new_personal_website-b19dbff510f776f7d395d4f4de609e13cec84697.zip |
update style rake task to copy from new sass to old sass folder. it seems like it was backwards before which makes no sense
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ task :update_style, :theme do |t, args| mv "sass", "sass.old" puts "## Moved styles into sass.old/" cp_r "#{themes_dir}/"+theme+"/sass/", "sass" - cp_r "sass.old/custom/.", "sass/custom" + cp_r "sass/custom", "sass.old/custom/." puts "## Updated Sass ##" end |