Skip to content

Commit

Permalink
Refactor main (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
int128 authored Jul 17, 2022
1 parent a8bf792 commit a967183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ const main = async (): Promise<void> => {
})
}

main().catch((e) => core.setFailed(e instanceof Error ? e.message : JSON.stringify(e)))
main().catch((e) => core.setFailed(e instanceof Error ? e : String(e)))

0 comments on commit a967183

Please sign in to comment.