From 7bbdbe60b8ff8fcfec80a099e63e01ff2646b5b4 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 30 Apr 2017 18:55:12 +0200 Subject: [PATCH] [microdecision] Syntax fix for ./ynh-dev test dependencies --- ynh-dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ynh-dev b/ynh-dev index c092549..4c51ad2 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 "======================="