Skip to content

Commit

Permalink
Replace doubling -d on commands (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvuillam authored Oct 14, 2024
1 parent b9b650b commit 755a645
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

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

- 2 hardis commands: rename `-d` into something else when the short option was available twice on the same command

## [5.2.0] 2024-10-14

- Improve [BUILD & RUN documentation](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-hotfixes/)
Expand Down
2 changes: 1 addition & 1 deletion src/commands/hardis/package/version/promote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class PackageVersionPromote extends SfCommand<any> {

public static flags: any = {
auto: Flags.boolean({
char: 'd',
char: 'f',
default: false,
description: 'Auto-detect which versions of which packages need to be promoted',
}),
Expand Down
2 changes: 1 addition & 1 deletion src/commands/hardis/project/deploy/simulate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Used by VsCode Extension`;

public static flags: any = {
"source-dir": Flags.string({
char: "d",
char: "f",
description: "Source file or directory to simulate the deployment",
multiple: true,
required: true
Expand Down

0 comments on commit 755a645

Please sign in to comment.