diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 16:19:46 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 16:19:46 +0000 |
commit | 3ee8eda58f4dc95c6fff55a287cebde104167f13 (patch) | |
tree | b6220e97ed58b754bd5f6f6ba82bc5fef092b791 /src/frontend | |
parent | bdb1f218d3133bb1ca75f2c104d64ed315fc79ea (diff) |
merge upgradepkg && upgradesrc
Diffstat (limited to 'src/frontend')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 4 | ||||
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index 88e6378..3124fd0 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.start() + sisyphus.upgrade.start() else: - sisyphus.upgradesrc.start() + sisyphus.upgrade.estart() @app.command("spmsync") def spmsync(): diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 3d07b34..45a2dc3 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -411,7 +411,7 @@ class MainWorker(QtCore.QObject): @QtCore.pyqtSlot() def startUpgrade(self): self.started.emit() - sisyphus.upgradepkg.startx() + sisyphus.upgrade.startx() self.finished.emit() @QtCore.pyqtSlot() |