[Pkg-javascript-commits] [uglifyjs] 48/491: gracefully handle non-`Error` being thrown (#1893)
Jonas Smedegaard
dr at jones.dk
Wed Feb 14 19:51:20 UTC 2018
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag debian/3.3.10-1
in repository uglifyjs.
commit a0f5f862dfe5667471fc99265f6163ca676c3f58
Author: Alex Lam S.L <alexlamsl at gmail.com>
Date: Wed May 10 04:20:59 2017 +0800
gracefully handle non-`Error` being thrown (#1893)
---
bin/uglifyjs | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/bin/uglifyjs b/bin/uglifyjs
index d75b0ee..65b761c 100755
--- a/bin/uglifyjs
+++ b/bin/uglifyjs
@@ -193,7 +193,7 @@ function run() {
}
}
} catch (ex) {
- fatal(ex.stack);
+ fatal(ex);
}
var result = UglifyJS.minify(files, options);
if (result.error) {
@@ -220,7 +220,7 @@ function run() {
console.error("Supported options:");
console.error(ex.defs);
}
- fatal(ex.stack);
+ fatal(ex);
} else if (program.output == "ast") {
console.log(JSON.stringify(result.ast, function(key, value) {
if (skip_key(key)) return;
@@ -263,7 +263,8 @@ function run() {
}
function fatal(message) {
- console.error(message.replace(/^\S*?Error:/, "ERROR:"));
+ if (message instanceof Error) message = message.stack.replace(/^\S*?Error:/, "ERROR:")
+ console.error(message);
process.exit(1);
}
@@ -303,7 +304,7 @@ function read_file(path, default_value) {
return fs.readFileSync(path, "utf8");
} catch (ex) {
if (ex.code == "ENOENT" && default_value != null) return default_value;
- fatal(ex.stack);
+ fatal(ex);
}
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list