Bug 1751850 - stop silencing exceptions in getHSTSPreloadList.js. r=keeler DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D136777
This commit is contained in:
Julien Cristau
2022-01-25 16:32:50 +00:00
parent 659ee334eb
commit d337d50f66

View File

@@ -462,6 +462,7 @@ function output(statuses) {
dump("finished writing output file\n");
} catch (e) {
dump("ERROR: problem writing output to '" + OUTPUT + "': " + e + "\n");
throw e;
}
}