mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 10:17:09 +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")/.."
|
||||
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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user