diff options
-rw-r--r-- | src/backend/libsisyphus.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index c7c951e..5f18bae 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -204,6 +204,7 @@ def startInstall(pkgList): pkgBins = [] if not len(pkgDeps) == 0: + os.chdir(portageCache) if input("\n" + "These are the packages that would be merged, in order:" + "\n\n" + str(pkgDeps) + "\n\n" + "Total:" + " " + str(len(pkgDeps)) + " " + "package(s)" + "\n\n" "Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in pkgDeps]): print(">>> Fetching" + " " + url) @@ -244,6 +245,7 @@ def startUpgrade(): worldBins = [] if not len(worldDeps) == 0: + os.chdir(portageCache) if input("\n" + "These are the packages that would be merged, in order:" + "\n\n" + str(worldDeps) + "\n\n" + "Total:" + " " + str(len(worldDeps)) + " " + "package(s)" + "\n\n" "Would you like to proceed?" + " " + "[y/N]" + " ").lower().strip()[:1] == "y": for index, url in enumerate([binhostURL + package + '.tbz2' for package in worldDeps]): print(">>> Fetching" + " " + url) |