diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:30:16 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:30:16 +0000 |
commit | de363a67dd99fa1395be5a5ce8d9a75472d81997 (patch) | |
tree | 0cf2452839d5d7d2c3e7f7b0a4c93750ef73c7f0 /src/frontend/cli/sisyphus-cli.py | |
parent | 103aa455aee322549c77aad205ce9e92dd7e6b52 (diff) |
move upgrade{Pkg,Src} -> upgrade{pkg,src}
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 18b4c0b..d81cc73 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -203,9 +203,9 @@ 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.upgradePkg.cliExec() + sisyphus.upgradepkg.cliExec() else: - sisyphus.upgradeSrc.cliExec() + sisyphus.upgradesrc.cliExec() @app.command("spmsync") def spmsync(): |