From d500ddac9a23dedc4b5cbb4288c1feab87578433 Mon Sep 17 00:00:00 2001 From: Johann Kellerman Date: Wed, 25 Jan 2017 19:21:09 +0200 Subject: [PATCH] [script] Fix dodgy bash syntax for bootstrap (#5552) --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index c6d4a94be94..05e69cc4db7 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -7,7 +7,7 @@ set -e cd "$(dirname "$0")/.." script/bootstrap_server -if [ -x "$(command -v yarn >/dev/null)" ]; then +if command -v yarn >/dev/null ; then script/bootstrap_frontend else echo "Frontend development not possible without Node/yarn"