mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-02 18:21:23 +00:00
11 lines
522 B
Bash
11 lines
522 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Community Hass.io Add-ons: Visual Studio Code
|
|
# Executes user configured/requested commands on startup
|
|
# ==============================================================================
|
|
if bashio::config.has_value 'init_commands'; then
|
|
while read -r cmd; do
|
|
eval "${cmd}" \
|
|
|| bashio::exit.nok "Failed executing init command: ${cmd}"
|
|
done <<< "$(bashio::config 'init_commands')"
|
|
fi
|