summaryrefslogtreecommitdiff
path: root/src/frontend
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 16:05:18 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 16:05:18 +0000
commit15031a716ba272bc02eb21b0d4993bd86c920606 (patch)
treefa1bf11163d22343e144060ada607141584bec8c /src/frontend
parent100226c624cdf8b3b1210c124b0b1ee6a3b3d816 (diff)
merge installpkg && installsrc
Diffstat (limited to 'src/frontend')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py4
-rw-r--r--src/frontend/gui/sisyphus-gui.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py
index b8f500a..88e6378 100755
--- a/src/frontend/cli/sisyphus-cli.py
+++ b/src/frontend/cli/sisyphus-cli.py
@@ -124,9 +124,9 @@ 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.installpkg.start(pkgname)
+ sisyphus.install.start(pkgname)
else:
- sisyphus.installsrc.start(pkgname)
+ sisyphus.install.estart(pkgname)
@app.command("uninstall")
def uninstall(pkgname: List[str], force: bool = typer.Option(False, "--force", "-f")):
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py
index 67a8d97..3d07b34 100644
--- a/src/frontend/gui/sisyphus-gui.py
+++ b/src/frontend/gui/sisyphus-gui.py
@@ -398,7 +398,7 @@ class MainWorker(QtCore.QObject):
def startInstall(self):
self.started.emit()
pkgname = Sisyphus.pkgname
- sisyphus.installpkg.startx(pkgname)
+ sisyphus.install.startx(pkgname)
self.finished.emit()
@QtCore.pyqtSlot()