diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-09-10 15:52:53 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-09-10 15:52:53 +0300 |
commit | 16b12c62875c67a7ca50f6ee184dcb6f476ea350 (patch) | |
tree | fc581cea25efd6acde1bb085f92fe54a4973605f /bin/uglifyjs2 | |
parent | 1c8ba35844f4032fd9f12961a0feee1a78153aa3 (diff) | |
download | tracifyjs-16b12c62875c67a7ca50f6ee184dcb6f476ea350.tar.gz tracifyjs-16b12c62875c67a7ca50f6ee184dcb6f476ea350.zip |
fix "file" in the source map
Diffstat (limited to 'bin/uglifyjs2')
-rwxr-xr-x | bin/uglifyjs2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uglifyjs2 b/bin/uglifyjs2 index 1b64c2f5..0c2de4e6 100755 --- a/bin/uglifyjs2 +++ b/bin/uglifyjs2 @@ -61,7 +61,7 @@ var STATS = {}; var OUTPUT_FILE = ARGS.o; var SOURCE_MAP = ARGS.source_map ? UglifyJS.SourceMap({ - file: output, + file: OUTPUT_FILE, root: ARGS.source_map_root }) : null; |