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

Cole Robinson crobinso at redhat.com
Mon Jan 6 15:09:57 UTC 2014


On 12/18/2013 12:12 AM, abn at redhat.com wrote:
> 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."
> 

Thanks, pushed these 2.

- Cole


More information about the python-bugzilla mailing list