From 5776784021bbd7a36f7726c4ea47faed3fe34f46 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 26 Apr 2025 16:23:09 +0300 Subject: [PATCH] Remove no longer used flags from help message --- src/bpm/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bpm/main.go b/src/bpm/main.go index 77e2cf1..e44c0e8 100644 --- a/src/bpm/main.go +++ b/src/bpm/main.go @@ -729,12 +729,11 @@ func printHelp() { fmt.Println(" -c lists the amount of installed packages") fmt.Println(" -n lists only the names of installed packages") fmt.Println("-> bpm search | Searches for packages through declared repositories") - fmt.Println("-> bpm install [-R, -v, -y, -f, -o, -c, -b, -k, --reinstall, --reinstall-all, --no-optional, --installation-reason] | installs the following files") + fmt.Println("-> bpm install [-R, -v, -y, -f, --reinstall, --reinstall-all, --no-optional, --installation-reason] | installs the following files") fmt.Println(" -R= lets you define the root path which will be used") fmt.Println(" -v Show additional information about what BPM is doing") fmt.Println(" -y skips the confirmation prompt") fmt.Println(" -f skips dependency, conflict and architecture checking") - fmt.Println(" -k keeps the compilation directory created by BPM after source package installation") fmt.Println(" --reinstall Reinstalls packages even if they do not have a newer version available") fmt.Println(" --reinstall-all Same as --reinstall but also reinstalls dependencies") fmt.Println(" --no-optional Prevents installation of optional dependencies")