[python-bugzilla] [PATCH 2/2] Do not exit shell when in active-dev-env

abn at redhat.com abn at redhat.com
Wed Dec 18 05:12:51 UTC 2013


From: Arun Babu Neelicattu <abn at redhat.com>

---
 contrib/activate-dev-env | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/activate-dev-env b/contrib/activate-dev-env
index cdf5909..8603f0d 100644
--- a/contrib/activate-dev-env
+++ b/contrib/activate-dev-env
@@ -38,7 +38,7 @@ function virtualize()
     if [ -d ${DIR_NAME} ]; then
         activate $DIR_NAME || exit 1
         for REQ in $(find ./ -maxdepth 1 -type f -name "*requirements.txt"); do
-            pip install -qr "${REQ}" || exit 1
+            pip install -qr "${REQ}"
         done
     else
         echo >&2 "ERROR: Failed to activate virtualenv."
-- 
1.8.1.4



More information about the python-bugzilla mailing list