mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Shellcheck catch for always true expansion.
This commit is contained in:
parent
04da292df9
commit
bdd240ecb6
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ if [[ "${piholeVersion}" == "${piholeVersionLatest}" ]] && [[ "${webVersion}" ==
|
|||
echo ""
|
||||
exit 0
|
||||
|
||||
elif [[ "${piholeVersion} == ${piholeVersionLatest}" ]] && [[ "${webVersion}" != "${webVersionLatest}" ]]; then
|
||||
elif [[ "${piholeVersion}" == "${piholeVersionLatest}" ]] && [[ "${webVersion}" != "${webVersionLatest}" ]]; then
|
||||
echo "::: Pi-hole Web Admin files out of date"
|
||||
getGitFiles "${WEBINTERFACEDIR}" "${WEBINTERFACEGITURL}"
|
||||
echo ":::"
|
||||
|
|
Loading…
Reference in a new issue