Skip to content

Commit

Permalink
fix(logs): add addition info on dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Aug 13, 2023
1 parent 58569b4 commit 92e0905
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/sfpowerscripts-cli/src/impl/release/ReleaseImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,11 @@ export default class ReleaseImpl {
)
);

SFPLogger.log(COLOR_KEY_MESSAGE(`Dry-run: ${props.isDryRun}`));

if (releaseDefinition.baselineOrg)
SFPLogger.log(COLOR_KEY_MESSAGE(`Baselined Against Org: ${releaseDefinition.baselineOrg}`));
SFPLogger.log(COLOR_KEY_MESSAGE(`Dry-run: ${props.isDryRun}`));

if (
releaseDefinition.promotePackagesBeforeDeploymentToOrg &&
releaseDefinition.promotePackagesBeforeDeploymentToOrg == props.targetOrg
Expand Down

0 comments on commit 92e0905

Please sign in to comment.