Skip to content

Commit 77910bc

Browse files
committed
Fix path for llms.txt
1 parent cbfc29c commit 77910bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/generate_llms_txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,5 @@ def generate(source_dir, output_path):
118118
if __name__ == "__main__":
119119
docs_dir = os.path.dirname(os.path.abspath(__file__))
120120
source = os.path.join(docs_dir, SOURCE_DIR)
121-
output = sys.argv[1] if len(sys.argv) > 1 else os.path.join(docs_dir, "build", "2.0", "html", "llms.txt")
121+
output = sys.argv[1] if len(sys.argv) > 1 else os.path.join(docs_dir, "build", "html", "2.0", "llms.txt")
122122
generate(source, output)

0 commit comments

Comments
 (0)