hiroyuki-sato opened a new issue, #46656: URL: https://github.com/apache/arrow/issues/46656
### Describe the enhancement requested This is the sub issue #44748. * SC2086 check require quoting like `${download_url}` -> `"${download_url}"`. * SC2034 For keep argument order. Add skip shellcheck comment. ``` In ci/scripts/install_conda.sh line 30: version=$2 ^-----^ SC2034 (warning): version appears unused. Verify use (or export if used externally). In ci/scripts/install_conda.sh line 37: wget -nv ${download_url} -O /tmp/installer.sh ^-------------^ SC2086 (info): Double quote to prevent globbing and word splitting. ``` ### 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