hiroyuki-sato opened a new pull request, #46492:
URL: https://github.com/apache/arrow/pull/46492
### Rationale for this change
shellcheck outputs the following error in `ci/scripts/install_ccache.sh`.
```
In ci/scripts/install_ccache.sh line 35:
curl --fail --location --remote-name ${url}
^----^ SC2086 (info): Double quote
to prevent globbing and word splitting.
Did you mean:
curl --fail --location --remote-name "${url}"
In ci/scripts/install_ccache.sh line 36:
unzip -j ccache-${version}-windows-x86_64.zip
^--------^ SC2086 (info): Double quote to prevent
globbing and word splitting.
Did you mean:
unzip -j ccache-"${version}"-windows-x86_64.zip
In ci/scripts/install_ccache.sh line 38:
mv ccache.exe ${prefix}/bin/
^-------^ SC2086 (info): Double quote to prevent globbing
and word splitting.
Did you mean:
mv ccache.exe "${prefix}"/bin/
In ci/scripts/install_ccache.sh line 44:
wget -q ${url} -O - | tar -xzf - --directory /tmp/ccache
--strip-components=1
^----^ SC2086 (info): Double quote to prevent globbing and word
splitting.
Did you mean:
wget -q "${url}" -O - | tar -xzf - --directory /tmp/ccache
--strip-components=1
```
### What changes are included in this PR?
Fix shellcheck error. (Quote variables)
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]