From 55c4b09bf9ddf4ac8f389166b064f595640ee5d8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 29 Aug 2019 12:39:36 +0200 Subject: [PATCH] check setup.py before running pip install -e . --- build/local/setup_lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5