missing a bracket

This commit is contained in:
Sam 2016-02-05 14:59:33 +11:00
parent 8560194abf
commit 0032047804
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ end
def compress_node(from,to)
to_path = "#{assets_path}/#{to}"
assets = cdn_relative_path("/assets")
source_map_root = assets + (d=File.dirname(from)) == "." ? "" : "/#{d}"
source_map_root = assets + ((d=File.dirname(from)) == "." ? "" : "/#{d}")
source_map_url = cdn_path "/assets/#{to}.map"
cmd = "uglifyjs '#{assets_path}/#{from}' -p relative -c -m -o '#{to_path}' --source-map-root '#{source_map_root}' --source-map '#{assets_path}/#{to}.map' --source-map-url '#{source_map_url}'"