From 8538ae126d27559cfc224f6ecab03bb370381b9d Mon Sep 17 00:00:00 2001 From: Moul Date: Thu, 6 Apr 2017 09:42:12 +0200 Subject: [PATCH] [fix] tests: use backcotes on python package check condition. --- ynh-dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ynh-dev b/ynh-dev index 820f758..c092549 100755 --- a/ynh-dev +++ b/ynh-dev @@ -326,7 +326,7 @@ elif [ "$1" = "test" ]; then PIP_DEPENDENCIES="pytest-mock requests-mock" for DEP in $PIP_DEPENDENCIES do - if [ -z "pip show $DEP" ]; then + if [ -z `pip show $DEP` ]; then echo "=======================" echo "Installing $DEP with pip" echo "======================="