mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-14 18:32:55 +00:00
Count elements of array instead
Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
parent
b207ceeab2
commit
6fc7dc28a2
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ os_check() {
|
|||
|
||||
IFS=" " read -r -a supportedOS < <(dig +short -t txt ${remote_os_domain} @ns1.pi-hole.net | tr -d '"')
|
||||
|
||||
if [ -z "$supportedOS" ]; then
|
||||
if [ ${#supportedOS[@]} -eq 0 ]; then
|
||||
printf " %b %bRetrieval of supported OS failed. Please contact support. %b\\n" "${CROSS}" "${COL_LIGHT_RED}" "${COL_NC}"
|
||||
exit 1
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue