mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-06 08:46:21 +01:00
Updated cli help menu #148
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
4d3c0a7778
commit
cd51d40aef
3 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
||||||
4.2.4 - 30/10/2022
|
4.2.4 - 30/10/2022
|
||||||
Added:
|
Added:
|
||||||
- Patching SBo TAG from the configuration file
|
- Patching SBo TAG from the configuration file
|
||||||
|
Updated:
|
||||||
|
- The cli help menu
|
||||||
|
|
||||||
4.2.3 - 28/10/2022
|
4.2.3 - 28/10/2022
|
||||||
Updated:
|
Updated:
|
||||||
|
|
|
@ -52,7 +52,7 @@ Usage
|
||||||
upgrade Upgrade all the packages.
|
upgrade Upgrade all the packages.
|
||||||
build <packages> Build only the packages.
|
build <packages> Build only the packages.
|
||||||
install <packages> Build and install 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.
|
remove <packages> Remove installed packages.
|
||||||
find <packages> Find installed packages.
|
find <packages> Find installed packages.
|
||||||
view <packages> View packages from the repository.
|
view <packages> View packages from the repository.
|
||||||
|
@ -64,7 +64,7 @@ Usage
|
||||||
--yes Answer Yes to all questions.
|
--yes Answer Yes to all questions.
|
||||||
--jobs Set it for multicore systems.
|
--jobs Set it for multicore systems.
|
||||||
--resolve-off Turns off dependency resolving.
|
--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.
|
--skip-installed Skip installed packages.
|
||||||
|
|
||||||
-h, --help Show this message and exit.
|
-h, --help Show this message and exit.
|
||||||
|
|
|
@ -23,7 +23,7 @@ def usage(status: int):
|
||||||
f' {CYAN}upgrade{ENDC} Upgrade all the packages.',
|
f' {CYAN}upgrade{ENDC} Upgrade all the packages.',
|
||||||
f' {CYAN}build{ENDC} <packages> Build only the packages.',
|
f' {CYAN}build{ENDC} <packages> Build only the packages.',
|
||||||
f' {CYAN}install{ENDC} <packages> Build and install 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}remove{ENDC} <packages> Remove installed packages.',
|
||||||
f' {CYAN}find{ENDC} <packages> Find installed packages.',
|
f' {CYAN}find{ENDC} <packages> Find installed packages.',
|
||||||
f' {CYAN}view{ENDC} <packages> View packages from the repository.',
|
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}--yes{ENDC} Answer Yes to all questions.',
|
||||||
f' {YELLOW}--jobs{ENDC} Set it for multicore systems.',
|
f' {YELLOW}--jobs{ENDC} Set it for multicore systems.',
|
||||||
f' {YELLOW}--resolve-off{ENDC} Turns off dependency resolving.',
|
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',
|
f' {YELLOW}--skip-installed{ENDC} Skip installed packages.\n',
|
||||||
' -h, --help Show this message and exit.',
|
' -h, --help Show this message and exit.',
|
||||||
' -v, --version Print version and exit.\n',
|
' -v, --version Print version and exit.\n',
|
||||||
|
|
Loading…
Add table
Reference in a new issue