Revert "Add quoting around -w option of curl"

This reverts commit f2493af31d.
This commit is contained in:
popcornmix
2018-12-05 23:37:47 +00:00
parent f2493af31d
commit f268411378

View File

@@ -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
}