Remove trailing newline from curl'd variable.

Signed-off-by: Dan Schaper <dan.schaper@pi-hole.net>
pull/1244/head
Dan Schaper 7 years ago
parent 875a5d309d
commit 48351fed79
No known key found for this signature in database
GPG Key ID: 572E999E385B7BFC

@ -1164,7 +1164,7 @@ FTLinstall() {
echo "::: failed (error in getting latest release location from GitHub)"
return 1
fi
if curl -sSL --fail "https://github.com/pi-hole/FTL/releases/download/${latesttag}/${binary}" -o "/tmp/pihole-FTL"; then
if curl -sSL --fail "https://github.com/pi-hole/FTL/releases/download/${latesttag%$'\r'}/${binary}" -o "/tmp/pihole-FTL"; then
# Check if we just downloaded text, or a binary file.
if ! grep -qI '.' /tmp/pihole-FTL; then
echo "::: done"

Loading…
Cancel
Save