mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-04-19 19:07:17 +00:00

* Migrate voice content * Handle duplicate intent pages * ABC package.json * Fix some links * Fix more links * Update path * Update docs/voice/overview.md
17 lines
202 B
Plaintext
Executable File
17 lines
202 B
Plaintext
Executable File
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
yarn
|
|
|
|
# test if intents directory exists
|
|
|
|
if [ ! -d "intents" ]; then
|
|
git clone --depth 1 https://github.com/home-assistant/intents.git
|
|
fi
|
|
|
|
cd intents
|
|
git pull
|
|
cd ..
|
|
|