summaryrefslogtreecommitdiff
path: root/src/frontend/cli/sisyphus-cli.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-07-04 16:29:53 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-07-04 16:29:53 +0100
commit4fc5a53da38955b35b9b48e6ee24acf7b5cf3fdf (patch)
tree1150578c23437b31f2059575673f286de8ffed37 /src/frontend/cli/sisyphus-cli.py
parent94435dc8ad302c54448fdfe5b1add8d9a2b264f9 (diff)
fix some minor typosv4.2007.0
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py
index 65000c0..0be7b45 100755
--- a/src/frontend/cli/sisyphus-cli.py
+++ b/src/frontend/cli/sisyphus-cli.py
@@ -45,7 +45,7 @@ def install(pkgname: List[str], ebuild: bool = typer.Option(False, "--ebuild", "
You can use the --ebuild option even if you don't want to install any ebuild(source) packages; It will fall back to binary packages only.
"""
if not ebuild:
- sisyphus.install.start(pkgname)
+ sisyphus.installbinary.start(pkgname)
else:
sisyphus.installebuild.start(pkgname)
@@ -121,7 +121,7 @@ def upgrade(ebuild: bool = typer.Option(False, "--ebuild", "-e")):
You can use the --ebuild option even if you don't have any ebuild(source) packages installed; It will fall back to binary packages only.
"""
if not ebuild:
- sisyphus.upgrade.start()
+ sisyphus.upgradebinary.start()
else:
sisyphus.upgradeebuild.start()