Skip to content

Commit

Permalink
Fix crash when deployment is ok ^^
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam committed Jan 10, 2025
1 parent 2198898 commit bbfb9f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Note: Can be used with `sfdx plugins:install sfdx-hardis@beta` and docker image `hardisgroupcom/sfdx-hardis@beta`

## [5.14.3] 2025-01-10

- [hardis:project:deploy:smart](https://sfdx-hardis.cloudity.com/hardis/project/deploy/smart/) Fix crash when deployment is ok

## [5.14.2] 2025-01-10

- [hardis:project:deploy:smart](https://sfdx-hardis.cloudity.com/hardis/project/deploy/smart/) Fix parsing error in case it is UNKNOWN_ERROR
Expand Down
2 changes: 1 addition & 1 deletion src/common/utils/deployUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export async function smartDeploy(
retry: deployment.retry || null,
});
if (deployRes.status === 0) {
uxLog(commandThis, c.grey(shortenLogLines(deployRes.stdout + deployRes.stderr)));
uxLog(commandThis, c.grey(shortenLogLines(JSON.stringify(deployRes))));
}
} catch (e: any) {
await generateApexCoverageOutputFile(e);
Expand Down

0 comments on commit bbfb9f7

Please sign in to comment.