diff options
Diffstat (limited to 'src/backend/install.py')
-rw-r--r-- | src/backend/install.py | 4 |
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")) |