hiroyuki-sato opened a new issue, #46490: URL: https://github.com/apache/arrow/issues/46490
### Describe the enhancement requested This is the sub issue #44748. ``` 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 ``` ### Component(s) Continuous Integration -- 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org