diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-04-07 18:26:10 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-04-07 18:26:10 +0100 |
commit | b4d6245c84fdbabed108434b800a53cd91fc5b46 (patch) | |
tree | d374b7ea1395d224423cf66cd25a0f4313630f17 /src/backend/upgrade.py | |
parent | cf87b3a5d27636caf7e9085d12ded34039d21356 (diff) |
backend : rewrite the dependency solver in a more efficient way
Diffstat (limited to 'src/backend/upgrade.py')
-rw-r--r-- | src/backend/upgrade.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/upgrade.py b/src/backend/upgrade.py index a897078..d1d21b5 100644 --- a/src/backend/upgrade.py +++ b/src/backend/upgrade.py @@ -19,7 +19,7 @@ import sisyphus.update def start(): if sisyphus.checkenv.root(): sisyphus.update.start() - sisyphus.solvedeps.world() + sisyphus.solvedeps.start() bin_list, src_list, need_cfg = pickle.load( open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_worlddeps.pickle"), "rb")) @@ -73,7 +73,7 @@ def start(): def estart(): if sisyphus.checkenv.root(): sisyphus.update.start() - sisyphus.solvedeps.world() + sisyphus.solvedeps.start() bin_list, src_list, need_cfg = pickle.load( open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_worlddeps.pickle"), "rb")) @@ -165,7 +165,7 @@ def estart(): def xstart(): - sisyphus.solvedeps.world.__wrapped__() # undecorate + sisyphus.solvedeps.start.__wrapped__() # undecorate bin_list, src_list, need_cfg = pickle.load( open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_worlddeps.pickle"), "rb")) |