Skip to content

Commit

Permalink
fix misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-droid committed Jan 29, 2024
1 parent 98088d5 commit 92b34a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion src/save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function run(earlyExit : boolean | undefined) : Promise<void> {
// 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);
}
Expand Down

0 comments on commit 92b34a6

Please sign in to comment.