Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Added space after : on fail error
Browse files Browse the repository at this point in the history
  • Loading branch information
testersen committed Nov 18, 2023
1 parent 7983c04 commit ec5c2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function fail(
...args: unknown[]
): never {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const result = "❌ Error:" + trimIndent(content as any, ...(args || []));
const result = "❌ Error: " + trimIndent(content as any, ...(args || []));
jobSummary(result);
console.error(result);
process.exit(1);
Expand Down

0 comments on commit ec5c2b5

Please sign in to comment.