Fix warning in install.ts

This commit is contained in:
Shivam Mathur
2021-03-03 10:28:50 +05:30
parent 7a90166ec2
commit c485e8b283
2 changed files with 11 additions and 3 deletions

6
dist/index.js vendored
View File

@ -2122,7 +2122,11 @@ async function run() {
}
exports.run = run;
// call the run function
run();
(async () => {
await run();
})().catch(error => {
core.setFailed(error.message);
});
/***/ }),