Remove try/catch

This commit is contained in:
jhutchings1
2020-07-11 13:12:15 -07:00
parent dc2f0c2f5f
commit 8d49f67955
+3 -3
View File
@@ -145,7 +145,7 @@ async function runQueries(databaseFolder: string, sarifFolder: string, config: c
}
async function run() {
try {
//try {
if (util.should_abort('finish', true) || !await util.reportActionStarting('finish')) {
return;
}
@@ -174,11 +174,11 @@ async function run() {
}
}
} catch (error) {
/*} catch (error) {
core.setFailed(error.message);
await util.reportActionFailed('finish', error.message, error.stack);
return;
}
}*/
await util.reportActionSucceeded('finish');
}