Skip to content

Commit

Permalink
Skip github path check for full path links. (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Laren-AWS authored Aug 29, 2024
1 parent ea3d6c6 commit 4517bf6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aws_doc_sdk_examples_tools/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ def from_yaml(
link=github, sdk_version=sdk_version
)
)
elif github.startswith("http"):
pass # Tributaries specify full GitHub path. Consider passing in GitHub root from tributaries and doing a full check at some point.
elif not (root / github).exists():
errors.append(
metadata_errors.MissingGithubLink(
Expand Down

0 comments on commit 4517bf6

Please sign in to comment.