mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-26 17:26:05 +02:00
lint
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
#!/usr/bin/env bashio
|
#!/usr/bin/env bashio
|
||||||
|
|
||||||
CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION")
|
CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION")
|
||||||
CONFIGSOURCE="$(dirname $CONFIGSOURCE)"
|
CONFIGSOURCE="$(dirname "$CONFIGSOURCE")"
|
||||||
|
|
||||||
#################
|
#################
|
||||||
# CONFIG IMPORT #
|
# CONFIG IMPORT #
|
||||||
#################
|
#################
|
||||||
|
|
||||||
if [ $(ls -A "$CONFIGSOURCE/configurations") ]; then
|
if [ "$(ls -A "$CONFIGSOURCE/configurations")" ]; then
|
||||||
bashio::log.info "Configurations were found in $CONFIGSOURCE/configurations, they will be loaded."
|
bashio::log.info "Configurations were found in $CONFIGSOURCE/configurations, they will be loaded."
|
||||||
JSON_CONFIGURATION_DIR="$CONFIGSOURCE/configurations"
|
JSON_CONFIGURATION_DIR="$CONFIGSOURCE/configurations"
|
||||||
export JSON_CONFIGURATION_DIR
|
export JSON_CONFIGURATION_DIR
|
||||||
@@ -19,7 +19,7 @@ fi
|
|||||||
|
|
||||||
if bashio::config.has_value 'Updates'; then
|
if bashio::config.has_value 'Updates'; then
|
||||||
|
|
||||||
if [ "$(ls -A ${CONFIGSOURCE}/import_files)" ]; then
|
if [ "$(ls -A "${CONFIGSOURCE}"/import_files)" ]; then
|
||||||
# Align update with options
|
# Align update with options
|
||||||
echo ""
|
echo ""
|
||||||
FREQUENCY=$(bashio::config 'Updates')
|
FREQUENCY=$(bashio::config 'Updates')
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
|
||||||
# shellcheck shell=bash
|
|
||||||
|
|
||||||
for k in $(bashio::jq "${__BASHIO_ADDON_CONFIG}" 'keys | .[]'); do
|
|
||||||
printf "$(bashio::config $k)" >/var/run/s6/container_environment/$k
|
|
||||||
done
|
|
||||||
Reference in New Issue
Block a user