Move sass cache location out of synced fold

To prevent Errno::ETXTBSY when executing sass command.
This commit is contained in:
Gang Chen
2013-11-22 15:49:49 +08:00
committed by David Baumgold
parent 012862bc24
commit d7e5a7df49

View File

@@ -46,6 +46,7 @@ def sass_cmd(watch=false, debug=false)
end
"sass #{debug ? '' : '--style compressed'} " +
"--cache-location /tmp/sass-cache " +
"--load-path #{sass_load_paths.join(' ')} " +
"#{watch ? '--watch' : '--update'} -E utf-8 #{sass_watch_paths.join(' ')}"
end