tschaub commented on code in PR #37780:
URL: https://github.com/apache/arrow/pull/37780#discussion_r1329076176
##########
dev/release/utils-prepare.sh:
##########
@@ -155,8 +155,8 @@ update_versions() {
popd
pushd "${ARROW_DIR}/go"
- find . "(" -name "*.go*" -o -name "go.mod" ")" -exec sed -i.bak -E -e \
- "s|(github\\.com/apache/arrow/go)/v[0-9]+|\1/v${major_version}|" {} \;
+ find . "(" -name "*.go*" -o -name "go.mod" -o -name README.md ")" -exec sed
-i.bak -E -e \
+ "s|(github\\.com/apache/arrow/go)/v[0-9]+|\1/v${major_version}|g" {} \;
Review Comment:
The `README.md` has two versions of this match, so I added the `g` flag to
replace both.
--
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]