From 3bfe433d22b4f1800f45e459defbad9b477e1af6 Mon Sep 17 00:00:00 2001 From: Integral <integral@archlinuxcn.org> Date: Thu, 27 Mar 2025 14:37:19 +0800 Subject: [PATCH] bcachefs-tools: make targets of subvolume create/delete required Currently, when no targets are provided for "bcachefs subvolume create" or "bcachefs subvolume delete", it will exit silently with code 0. Make targets (arguments) required to solve this problem. This patch solves issue https://github.com/koverstreet/bcachefs/issues/766. Signed-off-by: Integral <integral@archlinuxcn.org> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev> --- src/commands/subvolume.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/subvolume.rs b/src/commands/subvolume.rs index 7df20819..6f5f2f2b 100644 --- a/src/commands/subvolume.rs +++ b/src/commands/subvolume.rs @@ -18,12 +18,14 @@ enum Subcommands { #[command(visible_aliases = ["new"])] Create { /// Paths + #[arg(required = true)] targets: Vec<PathBuf>, }, #[command(visible_aliases = ["del"])] Delete { /// Path + #[arg(required = true)] targets: Vec<PathBuf>, },