mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-14 12:56:37 +00:00
fix(script/bootstrap): Improve missing Yarn error (#22308)
This commit is contained in:
parent
0e8783fb01
commit
1bb871b9ac
@ -18,5 +18,9 @@ if [[ -n "$DEVCONTAINER" ]]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ! command -v yarn &> /dev/null; then
|
||||||
|
echo "Error: yarn not found. Please install it following the official instructions: https://yarnpkg.com/getting-started/install" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
# Install node modules
|
# Install node modules
|
||||||
yarn install
|
yarn install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user