force the link for idempotency

This commit is contained in:
Girish Ramakrishnan
2016-12-26 11:57:14 -08:00
parent 61789e3fda
commit 7e3a54ff1b
2 changed files with 3 additions and 3 deletions

View File

@@ -171,7 +171,7 @@ fi
echo "=> Downloading and running installer for version ${version} ... (this takes some time)"
box_src_tmp_dir=$(mktemp -dt box-src-XXXXXX)
if ! $curl -sL "${sourceTarballUrl}" | tar -zxf - -C "${box_src_tmp_dir}"; then
if ! curl -sL "${sourceTarballUrl}" | tar -zxf - -C "${box_src_tmp_dir}"; then
echo "Could not download source tarball. See ${LOG_FILE} for details"
exit 1
fi