Skip to content

Commit

Permalink
fix: change default value for combined package to package.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 authored Nov 20, 2024
1 parent 2df7ef0 commit 6c43cd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ USAGE
$ sf sfpc combine [-f <value>] [-d <value>] [-c <value>] [--json]
FLAGS
-f, --package-file=<value> The path to an existing package.xml file. This flag can be specified multiple times.
-d, --directory=<value> The path to an existing directory with package.xml files. Only XML files in the immediate directory will be scanned.
This flag can be specified multiple times.
-f, --package-file=<value> The path to an existing package.xml file. This flag can be specified multiple times.
-d, --directory=<value> The path to an existing directory with package.xml files. Only XML files in the immediate directory will be scanned.
This flag can be specified multiple times.
-c, --combined-package=<value> The path to save the combined package.xml to.
Default name is "combinedPackage.xml" in the running directory.
If this value matches one of the input packages, it will overwrite the file.
Default name is "package.xml" in the running directory.
GLOBAL FLAGS
--json Format output as json.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/sfpc/combine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class SfpcCombine extends SfCommand<SfpcCombineResult> {
summary: messages.getMessage('flags.combined-package.summary'),
char: 'c',
exists: false,
default: 'combinedPackage.xml',
default: 'package.xml',
}),
directory: Flags.directory({
summary: messages.getMessage('flags.directory.summary'),
Expand Down

0 comments on commit 6c43cd6

Please sign in to comment.