From f2493af31dad6afde55948c6d93c326e98e73da5 Mon Sep 17 00:00:00 2001 From: popcornmix Date: Wed, 5 Dec 2018 16:53:34 +0000 Subject: [PATCH] Add quoting around -w option of curl --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index f65150d..88a5c91 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 }