diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-03-09 13:40:55 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-03-09 13:40:55 +0000 |
commit | ace4c1fb095f4e55f8f8e7693057404a98ab6e4d (patch) | |
tree | 9ab3a260bba78ee7793187e59ef2b27ce76512f3 /src/frontend/cli/sisyphus-cli.py | |
parent | 6ff384e5716dc9392475c35bb381a2872e9f2e6b (diff) |
rename some functions
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-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 541d610..8e6ec04 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.instpkgsrc.start( + sisyphus.binpkgsrcinst.start( pkgname, ebuild=True, gfx_ui=False, oneshot=oneshot, nodeps=nodeps) else: - sisyphus.instpkgsrc.start( + sisyphus.binpkgsrcinst.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.rmpkgsrc.start( + sisyphus.binpkgsrcunst.start( pkgname, depclean=False, gfx_ui=False, unmerge=True) else: - sisyphus.rmpkgsrc.start( + sisyphus.binpkgsrcunst.start( pkgname, depclean=True, gfx_ui=False, unmerge=False) @@ -186,7 +186,7 @@ def autoremove(): * Examples:\n sisyphus autoremove\n """ - sisyphus.autormpkgsrc.start(gfx_ui=False) + sisyphus.binpkgsrcautorm.start(gfx_ui=False) @app.command("autoclean") @@ -233,9 +233,9 @@ def upgrade( sisyphus upgrade -e\n """ if ebuild: - sisyphus.sysupgrade.start(ebuild=True, gfx_ui=False) + sisyphus.binpkgsrcupgd.start(ebuild=True, gfx_ui=False) else: - sisyphus.sysupgrade.start(ebuild=False, gfx_ui=False) + sisyphus.binpkgsrcupgd.start(ebuild=False, gfx_ui=False) @app.command("spmsync") |