summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/backend/installbinary.py3
-rw-r--r--src/backend/upgradebinary.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/installbinary.py b/src/backend/installbinary.py
index 9658bf9..d161a3c 100644
--- a/src/backend/installbinary.py
+++ b/src/backend/installbinary.py
@@ -61,5 +61,8 @@ def start(pkgname):
sys.exit("\n" + "No package found; Quitting." + "\n")
else:
sys.exit("\n" + "Source package(s) found in the mix;" + " " + "Use" + " " + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + ";" + " " + "Quitting." + "\n")
+ else:
+ # don't silently fail if a source package requested without the --ebuild option needs a keyword, mask, REQUIRED_USE or USE change
+ sys.exit("\n" + "Invalid request;" " " + "Use" + " " + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + ";" + " " + "Quitting." + "\n")
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")
diff --git a/src/backend/upgradebinary.py b/src/backend/upgradebinary.py
index 2bb7905..9b14868 100644
--- a/src/backend/upgradebinary.py
+++ b/src/backend/upgradebinary.py
@@ -61,5 +61,8 @@ def start():
sys.exit("\n" + "No package upgrades found; Quitting." + "\n")
else:
sys.exit("\n" + "Source package(s) found in the mix;" + " " + "Use" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + ";" + " " + "Quitting." + "\n")
+ else:
+ # don't silently fail if a source package requested without the --ebuild option needs a keyword, mask, REQUIRED_USE or USE change
+ sys.exit("\n" + "Invalid request;" " " + "Use" + " " + "'" + "sisyphus upgrade --ebuild" + "'" + ";" + " " + "Quitting." + "\n")
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")