From b19dbff510f776f7d395d4f4de609e13cec84697 Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Mon, 15 Jul 2013 12:10:35 -0400 Subject: [PATCH] update style rake task to copy from new sass to old sass folder. it seems like it was backwards before which makes no sense --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f3ada93..7bc0ac3 100644 --- a/Rakefile +++ b/Rakefile @@ -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