From 089b62a0ef27869f8b5cda01715071770b79ca46 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Thu, 21 Aug 2025 15:01:38 +0000 Subject: [PATCH] fix(n34-patch-apply): required the `applied_commits` Signed-off-by: Awiteb --- src/cli/commands/patch/apply.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/commands/patch/apply.rs b/src/cli/commands/patch/apply.rs index adebbc0..dc49be1 100644 --- a/src/cli/commands/patch/apply.rs +++ b/src/cli/commands/patch/apply.rs @@ -42,8 +42,8 @@ pub struct ApplyArgs { /// been applied, not all. #[arg(long = "patches", value_name = "PATCH-EVENT-ID")] applied_patches: Vec, - /// The applied commits - #[arg(num_args = 1..)] + /// The applied commits. + #[arg(required = true)] applied_commits: Vec, }