aboutsummaryrefslogtreecommitdiff
path: root/test/jetstream.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-05-01 11:55:06 +0100
committerGitHub <noreply@github.com>2020-05-01 18:55:06 +0800
commitdcb74f558ec5228ef30d77bb2a4199556580ddfe (patch)
tree5402ddaa34ac980e54887bd72f445ce2bb8f4052 /test/jetstream.js
parent0794aaa2c24d8d5c27e8ba74c0e485a27e2fcd59 (diff)
downloadtracifyjs-dcb74f558ec5228ef30d77bb2a4199556580ddfe.tar.gz
tracifyjs-dcb74f558ec5228ef30d77bb2a4199556580ddfe.zip
fix diagnostic text (#3838)
Diffstat (limited to 'test/jetstream.js')
-rw-r--r--test/jetstream.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jetstream.js b/test/jetstream.js
index 834f2575..3ad9677f 100644
--- a/test/jetstream.js
+++ b/test/jetstream.js
@@ -41,7 +41,7 @@ if (typeof phantom == "undefined") {
var uglifyjs = child_process.spawn(process.argv[0], args, {
silent: true
}).on("exit", function(code) {
- console.log("uglifyjs", url.slice(site.length + 1), args.join(" "));
+ console.log("uglifyjs", url.slice(site.length + 1), args.slice(1).join(" "));
console.log(stderr);
if (code) throw new Error("uglifyjs failed with code " + code);
});