Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Aug 18, 2024
1 parent 2cf811f commit 970c492
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45421,7 +45421,7 @@ const main = async () => {
process.exit(0);
}
catch (error) {
core.setFailed(error);
core.setFailed(`${error.message}\n${error.stack}`);
}
};
main();
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const main = async () => {
core.info('Unity Setup Complete!');
process.exit(0);
} catch (error) {
core.setFailed(error);
core.setFailed(`${error.message}\n${error.stack}`);
}
}

Expand Down

0 comments on commit 970c492

Please sign in to comment.