Updated cli help menu #148

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-10-31 08:52:20 +02:00
parent 4d3c0a7778
commit cd51d40aef
3 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,8 @@
4.2.4 - 30/10/2022
Added:
- Patching SBo TAG from the configuration file
Updated:
- The cli help menu
4.2.3 - 28/10/2022
Updated:

View file

@ -52,7 +52,7 @@ Usage
upgrade Upgrade all the packages.
build <packages> Build only the packages.
install <packages> Build and install the packages.
download <packages> Download only the packages.
download <packages> Download only the scripts and sources.
remove <packages> Remove installed packages.
find <packages> Find installed packages.
view <packages> View packages from the repository.
@ -64,7 +64,7 @@ Usage
--yes Answer Yes to all questions.
--jobs Set it for multicore systems.
--resolve-off Turns off dependency resolving.
--reinstall Use this option if you want to upgrade.
--reinstall Upgrade packages of the same version.
--skip-installed Skip installed packages.
-h, --help Show this message and exit.

View file

@ -23,7 +23,7 @@ def usage(status: int):
f' {CYAN}upgrade{ENDC} Upgrade all the packages.',
f' {CYAN}build{ENDC} <packages> Build only the packages.',
f' {CYAN}install{ENDC} <packages> Build and install the packages.',
f' {CYAN}download{ENDC} <packages> Download only the packages.',
f' {CYAN}download{ENDC} <packages> Download only the scripts and sources.',
f' {CYAN}remove{ENDC} <packages> Remove installed packages.',
f' {CYAN}find{ENDC} <packages> Find installed packages.',
f' {CYAN}view{ENDC} <packages> View packages from the repository.',
@ -34,7 +34,7 @@ def usage(status: int):
f' {YELLOW}--yes{ENDC} Answer Yes to all questions.',
f' {YELLOW}--jobs{ENDC} Set it for multicore systems.',
f' {YELLOW}--resolve-off{ENDC} Turns off dependency resolving.',
f' {YELLOW}--reinstall{ENDC} Use this option if you want to upgrade.',
f' {YELLOW}--reinstall{ENDC} Upgrade packages of the same version.',
f' {YELLOW}--skip-installed{ENDC} Skip installed packages.\n',
' -h, --help Show this message and exit.',
' -v, --version Print version and exit.\n',