diff options
author | Parker Moore <parkrmoore@gmail.com> | 2013-11-17 18:51:37 -0800 |
---|---|---|
committer | Parker Moore <parkrmoore@gmail.com> | 2013-11-17 18:51:37 -0800 |
commit | 4a3c160a17bf7b67bb6b6c5131c313281847827b (patch) | |
tree | 41440a54d06c8d4ad90a690503dc955e5e3961fb /Rakefile | |
parent | a1896c51262c58eb262a767df6fa900c555fbe40 (diff) | |
parent | b19dbff510f776f7d395d4f4de609e13cec84697 (diff) | |
download | my_new_personal_website-4a3c160a17bf7b67bb6b6c5131c313281847827b.tar.xz my_new_personal_website-4a3c160a17bf7b67bb6b6c5131c313281847827b.zip |
Merge pull request #1299 from blake41/master
Fix update styles rake task
Diffstat (limited to 'Rakefile')
-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 |