[script] Fix dodgy bash syntax for bootstrap (#5552)

This commit is contained in:
Johann Kellerman 2017-01-25 19:21:09 +02:00 committed by Paulus Schoutsen
parent 393c7f2cf1
commit d500ddac9a

View File

@ -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"