Skip to content

Commit

Permalink
fix: update job error message
Browse files Browse the repository at this point in the history
  • Loading branch information
btrn11 committed Jan 22, 2025
1 parent 4c532ee commit c15b76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package/packagePushUpgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class PackagePushUpgrade {
.map(
(job, index) =>
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
`Job ${index + 1} Error:${JSON.stringify(job?.sf__Error, null, 2)}`
`Job ${index + 1}: Error:${JSON.stringify(job?.sf__Error, null, 2)}`
)
.join('');

Expand Down

0 comments on commit c15b76e

Please sign in to comment.