mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-04-24 13:27:15 +00:00
9 lines
102 B
Bash
Executable File
9 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
# Setups the repository.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
script/bootstrap
|