Merge pull request #3137 from pi-hole/tweak/apilatest

Change to use API instead of the Location Header
This commit is contained in:
Adam Warner 2020-02-16 12:19:31 +00:00 committed by GitHub
commit 082cfb2f1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2229,7 +2229,7 @@ FTLinstall() {
printf " %b %s..." "${INFO}" "${str}"
# Find the latest version tag for FTL
latesttag=$(curl -sI https://github.com/pi-hole/FTL/releases/latest | grep "Location" | awk -F '/' '{print $NF}')
latesttag=$(curl --silent "https://api.github.com/repos/pi-hole/ftl/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
# Tags should always start with v, check for that.
if [[ ! "${latesttag}" == v* ]]; then
printf "%b %b %s\\n" "${OVER}" "${CROSS}" "${str}"