summaryrefslogtreecommitdiff
path: root/src/frontend/cli/sisyphus-cli.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 15:22:22 +0000
commit5fc5276d968a38d05fa5659c06392e83cc428516 (patch)
treeec5f00e45ec57767909b8e5bd8b13891adb88781 /src/frontend/cli/sisyphus-cli.py
parentf7f86f807d2756f5081c0e0f1dfc9ead61ac9f5c (diff)
move uninstallAll -> uninstall
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py8
1 files changed, 4 insertions, 4 deletions
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():