We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd4b24d commit 5971f90Copy full SHA for 5971f90
build.py
@@ -2815,7 +2815,10 @@ def enable_all():
2815
components_git_orgs = {key: DEFAULT_GIT_ORG for key in COMPONENTS_GIT_ORG_KEYS}
2816
for git_org in FLAGS.git_org:
2817
parts = git_org.split("!")
2818
- fail_if(len(parts) != 2, "--git-org must specify <component-name>:<git-org>")
+ fail_if(
2819
+ len(parts) != 2,
2820
+ "--git-org must specify <component-name>!<git-org>, note '!' separator.",
2821
+ )
2822
fail_if(
2823
parts[0] not in components_git_orgs,
2824
'--git-org <component-name> must be one of "{}"'.format(
0 commit comments