hiroyuki-sato opened a new pull request, #50671:
URL: https://github.com/apache/arrow/pull/50671
### Rationale for this change
This is the sub issue #44748.
Fix only ShellCheck SC2086 errors in the dev directory.
* SC2086: Double quote to prevent globbing and word splitting.
```
shellcheck dev/release/post-01-tag.sh
In dev/release/post-01-tag.sh line 34:
git tag -a ${release_tag} ${release_candidate_tag} -m "[Release] Apache
Arrow Release ${version}"
^------------^ SC2086 (info): Double quote to prevent globbing
and word splitting.
^----------------------^ SC2086 (info): Double
quote to prevent globbing and word splitting.
Did you mean:
git tag -a "${release_tag}" "${release_candidate_tag}" -m "[Release] Apache
Arrow Release ${version}"
In dev/release/post-01-tag.sh line 35:
git push upstream ${release_tag}
^------------^ SC2086 (info): Double quote to prevent
globbing and word splitting.
Did you mean:
git push upstream "${release_tag}"
For more information:
https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing
...
```
### What changes are included in this PR?
* SC2086: 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]