[script] Fix dodgy bash syntax for bootstrap (#5552)
This commit is contained in:
parent
393c7f2cf1
commit
d500ddac9a
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ set -e
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
script/bootstrap_server
|
script/bootstrap_server
|
||||||
|
|
||||||
if [ -x "$(command -v yarn >/dev/null)" ]; then
|
if command -v yarn >/dev/null ; then
|
||||||
script/bootstrap_frontend
|
script/bootstrap_frontend
|
||||||
else
|
else
|
||||||
echo "Frontend development not possible without Node/yarn"
|
echo "Frontend development not possible without Node/yarn"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue