From: Guillaume Pellerin Date: Thu, 29 Aug 2019 10:39:36 +0000 (+0200) Subject: check setup.py before running pip install -e . X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=55c4b09bf9ddf4ac8f389166b064f595640ee5d8;p=docker-django-scripts.git check setup.py before running pip install -e . --- diff --git a/build/local/setup_lib.sh b/build/local/setup_lib.sh index c38040e..c77424f 100755 --- a/build/local/setup_lib.sh +++ b/build/local/setup_lib.sh @@ -4,7 +4,7 @@ for module in `ls /srv/lib/`; do cd /srv/lib/$module if [ -f 'requirements.txt' ]; then pip install -r requirements.txt - else + elif [ -f 'setup.py' ]; then pip install -e . fi done