mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Change to use API instead of the Location Header
(some trailing whitespace removed) Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
parent
e528903488
commit
1072078e26
1 changed files with 6 additions and 6 deletions
|
@ -2229,7 +2229,7 @@ FTLinstall() {
|
||||||
printf " %b %s..." "${INFO}" "${str}"
|
printf " %b %s..." "${INFO}" "${str}"
|
||||||
|
|
||||||
# Find the latest version tag for FTL
|
# 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.
|
# Tags should always start with v, check for that.
|
||||||
if [[ ! "${latesttag}" == v* ]]; then
|
if [[ ! "${latesttag}" == v* ]]; then
|
||||||
printf "%b %b %s\\n" "${OVER}" "${CROSS}" "${str}"
|
printf "%b %b %s\\n" "${OVER}" "${CROSS}" "${str}"
|
||||||
|
|
Loading…
Reference in a new issue