Skip to content

Commit

Permalink
Merge pull request #249 from salesforcecli/sh/list-multiple-packages
Browse files Browse the repository at this point in the history
fix: split on comma
  • Loading branch information
WillieRuemmele authored Feb 8, 2023
2 parents e48fffd + 6717487 commit 2ca1fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/package/version/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class PackageVersionListCommand extends SfCommand<PackageVersionListComma
createdLastDays: flags['created-last-days'] as number,
concise: flags.concise,
modifiedLastDays: flags['modified-last-days'] as number,
packages: flags.packages?.split(' ') ?? [],
packages: flags.packages?.split(',') ?? [],
isReleased: flags.released,
orderBy: flags['order-by'] as string,
verbose: flags.verbose,
Expand Down

0 comments on commit 2ca1fa3

Please sign in to comment.