Skip to content

Commit

Permalink
Fix arguments syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
marians committed Dec 9, 2024
1 parent c41a2e2 commit 1e8b92a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-links-in-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
'ghcr.io/linkchecker/linkchecker:latest',
f'https://docs.giantswarm.io/{section}/',
'--check-extern',
'--threads 1',
'--recursion-level 2',
'--threads', '1',
'--recursion-level', '2',
'--no-status',
'--file-output html/utf8/{section}.html']
'--file-output', f'html/utf8/{section}.html']
result = subprocess.run(cmd)
if result.returncode > 0:
Expand Down

0 comments on commit 1e8b92a

Please sign in to comment.