Skip to content

Commit

Permalink
allow both sequences and commands in run (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnordahl authored Nov 1, 2024
1 parent b891e88 commit 6c1575c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ pub fn build() -> clap::Command {
.group(
ArgGroup::new("commands_and_or_sequences")
.args([ARG_COMMANDS, ARG_SEQUENCES])
.required(true),
.required(true)
.multiple(true),
)
.arg(
Arg::new(ARG_TARGETS)
Expand Down

0 comments on commit 6c1575c

Please sign in to comment.