Copilot commented on code in PR #51026: URL: https://github.com/apache/arrow/pull/51026#discussion_r3881251773
########## ci/scripts/install_bison.sh: ########## @@ -28,7 +28,7 @@ version=$1 prefix=$2 mkdir -p /tmp/bison -url="https://ftp.gnu.org/gnu/bison/bison-${version}.tar.gz" +url="https://ftpmirror.gnu.org/bison/bison-${version}.tar.gz" Review Comment: The mirror URL drops the `/gnu/` path segment that was present in the previous `ftp.gnu.org/gnu/bison/...` URL. `ftpmirror.gnu.org` is typically used as a redirector with the same `/gnu/...` layout; without it this is likely to 404 and break the install step. -- 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]
