Skip to content

Commit

Permalink
fix: split on comma
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Feb 8, 2023
1 parent e48fffd commit 6717487
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 6717487

Please sign in to comment.