summaryrefslogtreecommitdiff
path: root/src/backend/install.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-07 21:29:53 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-07 21:29:53 +0100
commit9a58956bf3491dd492e1d7cdac4da21f847fb8e9 (patch)
treeac94d0a6ee686adf2881430e37db115295029257 /src/backend/install.py
parentc1f682729399414e88cac4d5a740b05242657312 (diff)
rewrite update
Diffstat (limited to 'src/backend/install.py')
-rw-r--r--src/backend/install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/install.py b/src/backend/install.py
index 83f26f6..16779c5 100644
--- a/src/backend/install.py
+++ b/src/backend/install.py
@@ -18,7 +18,7 @@ import sisyphus.update
def start(pkgname):
if sisyphus.checkenv.root():
- sisyphus.update.start()
+ sisyphus.update.start(gfx_ui=False)
sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))
@@ -72,7 +72,7 @@ def start(pkgname):
def estart(pkgname):
if sisyphus.checkenv.root():
- sisyphus.update.start()
+ sisyphus.update.start(gfx_ui=False)
sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))