diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-08-19 18:29:50 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-08-19 18:29:50 +0100 |
commit | 11d7cdfe2a6f3ffd056961cb2bb0364f14d63e89 (patch) | |
tree | 5031861bba676797e7e29dcc1ee2b858bd14b6a8 /src/backend/libsisyphus.py | |
parent | 74eeefd8f8c757a68014219ebd0a1eb90f360b0c (diff) |
Revert "handle invalid package name, or nothing to upgrade cases"
This reverts commit 74eeefd8f8c757a68014219ebd0a1eb90f360b0c.
Diffstat (limited to 'src/backend/libsisyphus.py')
-rw-r--r-- | src/backend/libsisyphus.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index 22292ca..30baffc 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -241,8 +241,6 @@ def solvePkgDeps(pkgList): if "/" in portageOutput.rstrip(): pkgDep = str(portageOutput.rstrip().split("]")[1].strip("\ ")) pkgDeps.append(pkgDep) - else: - sys.exit("\n" + "Unable to find package(s); quitting." + "\n") return pkgDeps # call portage to solve world dependencies (CLI frontend) @@ -258,8 +256,6 @@ def solveWorldDeps(): worldDep = str(portageOutput.rstrip().split("]")[ 1].split("[")[0].strip("\ ")) worldDeps.append(worldDep) - else: - sys.exit("\n" + "Nothing to upgrade; quitting." + "\n") return worldDeps # fetch binaries and call portage to install the package(s) from local cache (CLI frontend) |