From dcb74f558ec5228ef30d77bb2a4199556580ddfe Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Fri, 1 May 2020 11:55:06 +0100 Subject: [PATCH] fix diagnostic text (#3838) --- test/jetstream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); });