From e29bc9a86817b9ce34bb5a62e273e9b15dfea45c Mon Sep 17 00:00:00 2001 From: popcornmix Date: Wed, 5 Dec 2018 23:37:54 +0000 Subject: [PATCH] Revert "Nullify user-defined --write-out option in cURL (#265)" This reverts commit b431ad7cac827507c5925b5aa3273c4e8bdeb1c7. --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index f65150d..8f24f1f 100755 --- a/rpi-update +++ b/rpi-update @@ -293,7 +293,7 @@ function download_rev { echo " *** Downloading specific firmware revision (this will take a few minutes)" rm -rf "${FW_REPOLOCAL}" mkdir -p "${FW_REPOLOCAL}" - eval curl -w "" -L ${GITHUB_AUTH_PARAM} "${REPO_URI}/tarball/${FW_REV}" | tar xzf - -C "${FW_REPOLOCAL}" --strip-components=1 + eval curl -L ${GITHUB_AUTH_PARAM} "${REPO_URI}/tarball/${FW_REV}" | tar xzf - -C "${FW_REPOLOCAL}" --strip-components=1 fi }