mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 04:37:06 +00:00
[script] Fix dodgy bash syntax for bootstrap (#5552)
This commit is contained in:
parent
393c7f2cf1
commit
d500ddac9a
@ -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…
x
Reference in New Issue
Block a user