amoeba commented on code in PR #47140:
URL: https://github.com/apache/arrow/pull/47140#discussion_r2217487253


##########
dev/release/post-15-conan.sh:
##########
@@ -62,13 +62,21 @@ sha256sum=$(curl \
               --location \
               
"https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/arrow-${version}/apache-arrow-${version}.tar.gz.sha256";
 | \
               cut -d' ' -f1)
-sed \
+
+# Use gsed on macOS and sed otherwise
+if [ "$(uname)" == "Darwin" ]; then
+  SED_BIN_NAME <- "gsed"
+else
+  SED_BIN_NAME <- "sed"
+fi
+
+SED_BIN_NAME \

Review Comment:
   Reverted my change and applied yours.



-- 
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-unsubscr...@arrow.apache.org

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

Reply via email to