diff options
author | Patrick Aikens <paikens@gmail.com> | 2014-02-01 00:09:38 -0500 |
---|---|---|
committer | Patrick Aikens <paikens@gmail.com> | 2014-02-01 00:09:38 -0500 |
commit | 51ad614bd2b5268ea3c7bb7ca8afbb7cafad9dfb (patch) | |
tree | 7ed3caaf963f3f619c3afcadab8a1fe15d4ef13d | |
parent | fe6ef744ede363688e8538ac091519e00c30487c (diff) | |
download | my_new_personal_website-51ad614bd2b5268ea3c7bb7ca8afbb7cafad9dfb.tar.xz my_new_personal_website-51ad614bd2b5268ea3c7bb7ca8afbb7cafad9dfb.zip |
Reversed update_style copy direction to correctly restore the sass.old/custom files to the new sass/custom folder
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -187,8 +187,8 @@ task :update_style, :theme do |t, args| end mv "sass", "sass.old" puts "## Moved styles into sass.old/" - cp_r "#{themes_dir}/"+theme+"/sass/", "sass" - cp_r "sass/custom/.", "sass.old/custom" + cp_r "#{themes_dir}/"+theme+"/sass/", "sass", :remove_destination=>true + cp_r "sass.old/custom/.", "sass.old/custom/", :remove_destination=>true puts "## Updated Sass ##" end |