11 lines
233 B
Bash
11 lines
233 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION")
|
|
CONFIGSOURCE="$(dirname "${CONFIGSOURCE}")"
|
|
|
|
if [ -f "$CONFIGSOURCE"/script.sh ]; then
|
|
"$CONFIGSOURCE"./script.sh
|
|
fi
|