1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

options: improve message when too many--or too few--path arguments given

Running bees with no arguments complains about "Only one" path argument.
Replace this with "Exactly one" which uses similar terminology to other
btrfs tools.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
Dieser Commit ist enthalten in:
Zygo Blaxell
2024-12-16 22:30:34 -05:00
Ursprung 74296c644a
Commit 1f0b8c623c
+1 -1
Datei anzeigen
@@ -819,7 +819,7 @@ bees_main(int argc, char *argv[])
}
if (optind + 1 != argc) {
BEESLOGERR("Only one filesystem path per bees process");
BEESLOGERR("Exactly one filesystem path required");
return EXIT_FAILURE;
}