diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-11-16 13:35:41 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-11-16 13:35:41 +0000 |
commit | 1965c85d0acc683e1dddb58cec343b2ff62711e4 (patch) | |
tree | 7cffdc7f1766f1b35101204ac3557280d4a6099e /src/backend/upgrade.py | |
parent | d557eb56c850b17823edc26636cc4361e6c45ca0 (diff) |
change pickle database names
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 738be54..f0468ed 100644 --- a/src/backend/upgrade.py +++ b/src/backend/upgrade.py @@ -19,7 +19,7 @@ def start(): if sisyphus.checkenv.root(): sisyphus.update.start() sisyphus.solvedeps.world() - areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_solvedeps_world.pickle"), "rb")) + areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_worlddeps.pickle"), "rb")) if needsConfig == 0: if len(areSources) == 0: @@ -48,7 +48,7 @@ def estart(): if sisyphus.checkenv.root(): sisyphus.update.start() sisyphus.solvedeps.world() - areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_solvedeps_world.pickle"), "rb")) + areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_worlddeps.pickle"), "rb")) if needsConfig == 0: if len(areSources) == 0: @@ -94,7 +94,7 @@ def estart(): def xstart(): sisyphus.solvedeps.world.__wrapped__() #undecorate - areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_solvedeps_world.pickle"), "rb")) + areBinaries,areSources,needsConfig = pickle.load(open(os.path.join(sisyphus.getfs.portageMetadataDir, "sisyphus_worlddeps.pickle"), "rb")) if not len(areSources) == 0: print("\n" + "Source package(s) found in the mix;" + " " + "Use sisyphus CLI:" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + " " + "to perform the upgrade;" + " " + "Aborting." + "\n") |