assignUser commented on issue #45290: URL: https://github.com/apache/arrow/issues/45290#issuecomment-2842396959
I used the following incantation to fix the issue manually but it relies on gnu sed's `-z` slurp mode option so it's not portable: ```bash find docs -type f -not -path 'docs/[0-9]*/*' -not -path 'docs/dev/*' -print0 \ | xargs -0 sed -z -i \ 's/DOCUMENTATION_OPTIONS\.show_version_warning_banner =\s*\n\s*true;/DOCUMENTATION_OPTIONS.show_version_warning_banner = false;/g' ``` -- 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