diff --git a/dist/save/index.js b/dist/save/index.js index 1de112ff..b3ccb082 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -59620,7 +59620,7 @@ async function run(earlyExit) { // A failure to save cache shouldn't prevent the entire CI run from // failing, so do not call setFailed() here. _actions_core__WEBPACK_IMPORTED_MODULE_0__.warning(`Saving cache failed: ${error}`); - // Early exit process so node doesn't want for hanging promises + // Early exit process so node doesn't wait for hanging promises if (earlyExit) { process.exit(-1); } diff --git a/src/save.ts b/src/save.ts index d15f8bf8..b9363a33 100644 --- a/src/save.ts +++ b/src/save.ts @@ -76,7 +76,7 @@ async function run(earlyExit : boolean | undefined) : Promise { // failing, so do not call setFailed() here. core.warning(`Saving cache failed: ${error}`); - // Early exit process so node doesn't want for hanging promises + // Early exit process so node doesn't wait for hanging promises if (earlyExit) { process.exit(-1); }