mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-21 20:07:27 +00:00

script/setup did not exist, despite being mentioned in the readme. Create it and let it call bootstrap.
11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
# Resolve all frontend dependencies that the application requires to develop.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/bootstrap
|
|
|