dongjoon-hyun commented on code in PR #52412: URL: https://github.com/apache/spark/pull/52412#discussion_r2501727158
########## dev/create-release/release-build.sh: ########## @@ -833,6 +833,14 @@ if [[ "$1" == "docs" ]]; then fi bundle install PRODUCTION=1 RELEASE_VERSION="$SPARK_VERSION" bundle exec jekyll build + + # Generate llms.txt for LLM consumption + echo "Generating llms.txt..." + python "$SELF/generate-llms-txt.py" \ + --docs-path . \ + --output _site/llms.txt \ Review Comment: According to the error message, can we use an absolute path here via using `$SELF`? ``` No such file or directory: '/_site/llms.txt ``` -- 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]
