andygrove opened a new pull request, #3264: URL: https://github.com/apache/datafusion-comet/pull/3264
## Summary - Fixes the broken docs publishing CI job - Removes dead code in `docs/build.sh` that was trying to delete files from non-existent directories The `docs/source/user-guide/0.8` and `0.9` directories were removed in commit 6a2209d2dbc, but `build.sh` still had `rm` commands trying to delete files from those directories. With `set -e` at the top of the script, these failing `rm` commands caused the entire docs build to exit with error code 1. The `2> /dev/null` only suppresses stderr but doesn't prevent the non-zero exit code from terminating the script. ## Test plan - [ ] Verify that the docs publishing CI job passes after this fix 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
