From: Alex Lam S.L Date: Fri, 1 May 2020 10:55:06 +0000 (+0100) Subject: fix diagnostic text (#3838) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dcb74f558ec5228ef30d77bb2a4199556580ddfe;p=UglifyJS.git fix diagnostic text (#3838) --- 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); });