Skip to content

Commit 4517bf6

Browse files
authored
Skip github path check for full path links. (#80)
1 parent ea3d6c6 commit 4517bf6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

aws_doc_sdk_examples_tools/metadata.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,8 @@ def from_yaml(
120120
link=github, sdk_version=sdk_version
121121
)
122122
)
123+
elif github.startswith("http"):
124+
pass # Tributaries specify full GitHub path. Consider passing in GitHub root from tributaries and doing a full check at some point.
123125
elif not (root / github).exists():
124126
errors.append(
125127
metadata_errors.MissingGithubLink(

0 commit comments

Comments
 (0)