Skip to content

Commit

Permalink
fix generation of cli for scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbjacobs committed May 7, 2024
1 parent c5e7074 commit ecb7dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/commands/schedule.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default async function (project, options) {
}
cli.seed = options.seed;
cli.apply = options.apply;
cli.cmd = `npx suggest-grid --preserve ${cli.preserve} --except ${cli.except} --seed ${cli.seed}${cli.apply ? ' --apply' : ''}`;
cli.cmd = `npx tpac-breakouts schedule --preserve ${cli.preserve} --except ${cli.except} --seed ${cli.seed}${cli.apply ? ' --apply' : ''}`;

// Apply preserve/except parameters
if (options.preserve === 'all') {
Expand Down

0 comments on commit ecb7dff

Please sign in to comment.