We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9dfa3d commit 4ffffc5Copy full SHA for 4ffffc5
build.py
@@ -2755,7 +2755,10 @@ def enable_all():
2755
components_git_orgs = {key: DEFAULT_GIT_ORG for key in COMPONENTS_GIT_ORG_KEYS}
2756
for git_org in FLAGS.git_org:
2757
parts = git_org.split("!")
2758
- fail_if(len(parts) != 2, "--git-org must specify <component-name>:<git-org>")
+ fail_if(
2759
+ len(parts) != 2,
2760
+ "--git-org must specify <component-name>!<git-org>, note '!' separator.",
2761
+ )
2762
fail_if(
2763
parts[0] not in components_git_orgs,
2764
'--git-org <component-name> must be one of "{}"'.format(
0 commit comments