mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 17:31:03 +01:00
10 lines
226 B
Bash
Executable File
10 lines
226 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
|
|
CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION")
|
|
CONFIGSOURCE="$(dirname "${CONFIGSOURCE}")"
|
|
|
|
if [ -f "$CONFIGSOURCE"/script.sh ]; then
|
|
"$CONFIGSOURCE"./script.sh
|
|
fi
|