mirror of
https://github.com/hassio-addons/bashio.git
synced 2025-05-07 04:21:29 +00:00
🚑 Fixes bug in config item exists check
This commit is contained in:
parent
d0530883f4
commit
d260a5180c
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ function bashio::config.exists() {
|
|||
|
||||
bashio::log.trace "${FUNCNAME[0]}:" "$@"
|
||||
|
||||
if [[ $(bashio::config ".${key}") != "null" ]]; then
|
||||
if [[ $(bashio::config "${key}") == "null" ]]; then
|
||||
return "${__BASHIO_EXIT_NOK}"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue