You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/02 15:24:47 UTC

[GitHub] [arrow] kszucs commented on a diff in pull request #13048: MINOR: [Release] Don't install go if it can be located

kszucs commented on code in PR #13048:
URL: https://github.com/apache/arrow/pull/13048#discussion_r862942897


##########
dev/release/verify-release-candidate.sh:
##########
@@ -382,6 +382,11 @@ install_go() {
     return 0
   fi
 
+  if which go > /dev/null 2>&1; then
+    show_info "Found $(go version) at $(which go)"

Review Comment:
   That is being set at the end of the function when we install go manually. 
   
   We could set nonetheless, just following the pattern from the other functions.



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org