Skip to content

Commit

Permalink
fix diagnostic text (#3838)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl authored May 1, 2020
1 parent 0794aaa commit dcb74f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/jetstream.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit dcb74f5

Please sign in to comment.