Fix ShellCheck issue by refactoring a bit

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2873/head^2
Mcat12 5 years ago committed by Dan Schaper
parent c9829dd3e4
commit 4e0ad52001
No known key found for this signature in database
GPG Key ID: B4FF14C01CC08DC0

@ -2383,14 +2383,16 @@ FTLcheckUpdate() {
if [[ ${ftlLoc} ]]; then
local FTLversion
FTLversion=$(/usr/bin/pihole-FTL tag)
local FTLreleaseData
local FTLlatesttag
FTLlatesttag=$(curl -sI https://github.com/pi-hole/FTL/releases/latest | grep 'Location' | awk -F '/' '{print $NF}' | tr -d '\r\n')
if [[ $? != 0 ]]; then
if ! FTLreleaseData=$(curl -sI https://github.com/pi-hole/FTL/releases/latest); then
# There was an issue while retrieving the latest version
return 3
fi
FTLlatesttag=$(grep 'Location' < "${FTLreleaseData}" | awk -F '/' '{print $NF}' | tr -d '\r\n')
if [[ "${FTLversion}" != "${FTLlatesttag}" ]]; then
return 0
else

Loading…
Cancel
Save