Commit d7e5a7df by Gang Chen Committed by David Baumgold

Move sass cache location out of synced fold

To prevent Errno::ETXTBSY when executing sass command.
parent 012862bc
...@@ -46,6 +46,7 @@ def sass_cmd(watch=false, debug=false) ...@@ -46,6 +46,7 @@ def sass_cmd(watch=false, debug=false)
end end
"sass #{debug ? '' : '--style compressed'} " + "sass #{debug ? '' : '--style compressed'} " +
"--cache-location /tmp/sass-cache " +
"--load-path #{sass_load_paths.join(' ')} " + "--load-path #{sass_load_paths.join(' ')} " +
"#{watch ? '--watch' : '--update'} -E utf-8 #{sass_watch_paths.join(' ')}" "#{watch ? '--watch' : '--update'} -E utf-8 #{sass_watch_paths.join(' ')}"
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment