Add warnings to help message
This commit is contained in:
parent
a1253ba02d
commit
958e1bc738
1 changed files with 7 additions and 0 deletions
7
akshara
7
akshara
|
@ -305,6 +305,7 @@ def handle_system_packages(install):
|
||||||
else:
|
else:
|
||||||
info("you are requested to review the operation's output")
|
info("you are requested to review the operation's output")
|
||||||
info("press ENTER to proceed with making overlay permanent, or ^C to abort")
|
info("press ENTER to proceed with making overlay permanent, or ^C to abort")
|
||||||
|
info("(aborting will also remove any packages installed previously without rebooting)")
|
||||||
try:
|
try:
|
||||||
input()
|
input()
|
||||||
except EOFError:
|
except EOFError:
|
||||||
|
@ -342,8 +343,14 @@ description = f'''
|
||||||
|
|
||||||
{colors.bold}{colors.fg.cyan}version:{colors.reset} {__version}{colors.bold}
|
{colors.bold}{colors.fg.cyan}version:{colors.reset} {__version}{colors.bold}
|
||||||
|
|
||||||
|
This CLI is only meant for developers familiar with blendOS and the akshara codebase.
|
||||||
|
|
||||||
|
blendOS is not responsible for any system breakage.
|
||||||
|
|
||||||
{colors.bold}{colors.fg.cyan}available commands{colors.reset}:
|
{colors.bold}{colors.fg.cyan}available commands{colors.reset}:
|
||||||
{colors.bold}help{colors.reset} Show this help message and exit.
|
{colors.bold}help{colors.reset} Show this help message and exit.
|
||||||
|
{colors.bold}install{colors.reset} Install system drivers/packages.
|
||||||
|
{colors.bold}remove{colors.reset} Remove system drivers/packages.
|
||||||
{colors.bold}version{colors.reset} Show version information and exit.
|
{colors.bold}version{colors.reset} Show version information and exit.
|
||||||
|
|
||||||
{colors.bold}{colors.fg.cyan}options for commands{colors.reset}:
|
{colors.bold}{colors.fg.cyan}options for commands{colors.reset}:
|
||||||
|
|
Loading…
Reference in a new issue