From f2684113784aebaf6bbe4dc033c2fd01596a16d5 Mon Sep 17 00:00:00 2001 From: popcornmix Date: Wed, 5 Dec 2018 23:37:47 +0000 Subject: [PATCH] Revert "Add quoting around -w option of curl" This reverts commit f2493af31dad6afde55948c6d93c326e98e73da5. --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index 88a5c91..f65150d 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 -w "" -L ${GITHUB_AUTH_PARAM} "${REPO_URI}/tarball/${FW_REV}" | tar xzf - -C "${FW_REPOLOCAL}" --strip-components=1 fi }