From 5fc5276d968a38d05fa5659c06392e83cc428516 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 30 Oct 2022 15:22:22 +0000 Subject: move uninstallAll -> uninstall --- src/frontend/cli/sisyphus-cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/frontend/cli') diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 5e93669..c97dd3b 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -161,9 +161,9 @@ def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", " will succeed, but the system will be broken """ if not force: - sisyphus.uninstallAll.cliExec(pkgname) + sisyphus.uninstall.cliExec(pkgname) else: - sisyphus.uninstallAll.cliExecForce(pkgname) + sisyphus.uninstall.cliExecForce(pkgname) @app.command("autoremove") def autoremove(): @@ -213,7 +213,7 @@ def spmsync(): When you install something with Portage directly (emerge), Sisyphus is not aware of that package, and it doesn't track it in it's database. Use this command to synchronize Sisyphus's package database with Portage's package database. """ - sisyphus.syncSPM.cliExec() + sisyphus.syncspm.cliExec() @app.command("rescue") def rescue(): @@ -272,7 +272,7 @@ def branch(branch: Branch = typer.Argument(...), remote: Remote = typer.Option(R @app.command("sysinfo") def sysinfo(): """Display information about installed core packages and portage configuration.""" - sisyphus.sysInfo.show() + sisyphus.sysinfo.show() @mirrorSetup.command("list") def mirrorlist(): -- cgit v1.2.3