From: Zac Medico Date: Wed, 29 Feb 2012 15:49:25 +0000 (-0800) Subject: action_build: return 1 for "no" --ask answer X-Git-Tag: v2.2.0_alpha90~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e1abe799a73594f35a2088a923a8b4ce7e4cdb07;p=portage.git action_build: return 1 for "no" --ask answer --- diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 31d53f992..096dc3a95 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -367,7 +367,7 @@ def action_build(settings, trees, mtimedb, print() print("Quitting.") print() - return os.EX_OK + return 1 # Don't ask again (e.g. when auto-cleaning packages after merge) myopts.pop("--ask", None)