diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-08-23 01:43:22 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-08-23 01:43:22 +0100 |
commit | bbd3803ef7fb7132868680652d024a4b89353e43 (patch) | |
tree | 4683071dd2e4d550f5badc838e4694085e24a746 /src/frontend/cli | |
parent | 84df9e9070477c3d3a7f2067edeb3f14f82560ed (diff) |
prepare for API documentation
Diffstat (limited to 'src/frontend/cli')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 8e6ec04..34ce260 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -135,10 +135,10 @@ def install(pkgname: List[str], sisyphus install -e --nodeps vivaldi\n """ if ebuild: - sisyphus.binpkgsrcinst.start( + sisyphus.binpkgsrc_inst.start( pkgname, ebuild=True, gfx_ui=False, oneshot=oneshot, nodeps=nodeps) else: - sisyphus.binpkgsrcinst.start( + sisyphus.binpkgsrc_inst.start( pkgname, ebuild=False, gfx_ui=False, oneshot=oneshot, nodeps=nodeps) @@ -165,10 +165,10 @@ def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", " sisyphus uninstall openrc -f # this will succeed, but the system will no longer boot\n """ if force: - sisyphus.binpkgsrcunst.start( + sisyphus.binpkgsrc_unst.start( pkgname, depclean=False, gfx_ui=False, unmerge=True) else: - sisyphus.binpkgsrcunst.start( + sisyphus.binpkgsrc_unst.start( pkgname, depclean=True, gfx_ui=False, unmerge=False) @@ -186,7 +186,7 @@ def autoremove(): * Examples:\n sisyphus autoremove\n """ - sisyphus.binpkgsrcautorm.start(gfx_ui=False) + sisyphus.binpkgsrc_cln.start(gfx_ui=False) @app.command("autoclean") @@ -233,9 +233,9 @@ def upgrade( sisyphus upgrade -e\n """ if ebuild: - sisyphus.binpkgsrcupgd.start(ebuild=True, gfx_ui=False) + sisyphus.binpkgsrc_upg.start(ebuild=True, gfx_ui=False) else: - sisyphus.binpkgsrcupgd.start(ebuild=False, gfx_ui=False) + sisyphus.binpkgsrc_upg.start(ebuild=False, gfx_ui=False) @app.command("spmsync") |