Skip to content

Commit 7498193

Browse files
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 6c1753a commit 7498193

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/generate-llms-txt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
run: |
35-
python generate-llms-txt.py
35+
python automation/generate-llms-txt.py
3636
git add qdrant-landing/static/llms.txt qdrant-landing/static/llms-full.txt
3737
if [[ `git status --porcelain` ]]; then
3838
# Changes

automation/generate-llms-txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def iter_hugo_content() -> Iterable[HugoContent]:
8484
List the published content in Hugo.
8585
:return:
8686
"""
87-
# Run os `huho list published` command and capture the output.
87+
# Run os `hugo list published` command and capture the output.
8888
cmd = ["hugo", "list", "published"]
8989
result = subprocess.run(cmd, capture_output=True, text=True)
9090
if result.returncode != 0:

0 commit comments

Comments
 (0)