11 lines
228 B
Bash
11 lines
228 B
Bash
|
#!/usr/bin/env bash
|
||
|
#shellcheck disable=SC2086
|
||
|
|
||
|
if [[ "${HOME_ASSISTANT__HACS_INSTALL}" == "true" ]]; then
|
||
|
curl -sfSL https://get.hacs.xyz | bash -
|
||
|
fi
|
||
|
|
||
|
exec \
|
||
|
/usr/local/bin/hass \
|
||
|
--config /config \
|
||
|
"$@"
|