👕 Shellcheck fix

This commit is contained in:
Timmo 2019-09-08 19:02:51 +01:00
parent 9ad7d184db
commit 1aef54deda

View file

@ -3,7 +3,7 @@
# Community Hass.io Add-ons: Home Panel
# This updates the internal auth secret for the API
# ==============================================================================
if [ $(cat /opt/panel/config/default.json | grep -c "API_AUTH_SECRET") = 0 ]; then
if [ "$(cat /opt/panel/config/default.json | grep -c 'API_AUTH_SECRET')" = 0 ]; then
bashio::log.info "Update auth secret.."
sed -i -e "s/API_AUTH_SECRET/$(openssl rand -base64 32)/g" /opt/panel/config/default.json
fi