This is an automated email from the ASF dual-hosted git repository.

comphead pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new 1b75777d3 fix: remove dead code for 0.8/0.9 docs that broke CI (#3264)
1b75777d3 is described below

commit 1b75777d386a120b10f5b71d5059e05cc6744c91
Author: Andy Grove <[email protected]>
AuthorDate: Sun Jan 25 15:32:00 2026 -0700

    fix: remove dead code for 0.8/0.9 docs that broke CI (#3264)
    
    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`, these failing
    commands caused the docs build to exit with code 1.
    
    Removed the dead code since versions 0.8 and 0.9 are no longer
    generated by generate-versions.py.
    
    Co-authored-by: Claude Opus 4.5 <[email protected]>
---
 docs/build.sh | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/docs/build.sh b/docs/build.sh
index 33d5b80e5..8a49a9bee 100755
--- a/docs/build.sh
+++ b/docs/build.sh
@@ -25,17 +25,11 @@ mkdir temp
 cp -rf source/* temp/
 
 # Add user guide from published releases
-rm -rf comet-0.8
-rm -rf comet-0.9
 rm -rf comet-0.10
 rm -rf comet-0.11
 rm -rf comet-0.12
 python3 generate-versions.py
 
-# Remove overview pages (this used to be part of the user guide but is now a 
top level page)
-rm temp/user-guide/0.9/overview.md 2> /dev/null
-rm temp/user-guide/0.8/overview.md 2> /dev/null
-
 # Generate dynamic content (configs, compatibility matrices) for latest docs
 # This runs GenerateDocs against the temp copy, not source files
 echo "Generating dynamic documentation content..."


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to