diff --git a/cmd/entire/cli/repo_mirror.go b/cmd/entire/cli/repo_mirror.go index ff038276a1..b8ea55d692 100644 --- a/cmd/entire/cli/repo_mirror.go +++ b/cmd/entire/cli/repo_mirror.go @@ -145,7 +145,7 @@ func newRepoMirrorCreateCmd() *cobra.Command { "(upstream, cluster). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror create github.com/octocat/hello-world\n" + - " entire repo mirror create github.com/octocat/hello-world eu-west-1.entire.io", + " entire repo mirror create github.com/octocat/hello-world aws-us-east-2.entire.io", Args: cobra.RangeArgs(1, 2), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0]) diff --git a/cmd/entire/cli/repo_mirror_collaborators.go b/cmd/entire/cli/repo_mirror_collaborators.go index e8c2f709f7..b8fa15efe7 100644 --- a/cmd/entire/cli/repo_mirror_collaborators.go +++ b/cmd/entire/cli/repo_mirror_collaborators.go @@ -74,7 +74,7 @@ func newRepoMirrorCollaboratorsAddCmd() *cobra.Command { "(pull works without push-through). The cluster-host defaults to " + defaultClusterHost + " when omitted.", Example: " entire repo mirror collaborators add github.com/acme/widget github:alice --role writer\n" + - " entire repo mirror collaborators add github.com/acme/widget github:alice eu-west-1.entire.io --role reader", + " entire repo mirror collaborators add github.com/acme/widget github:alice aws-us-east-2.entire.io --role reader", Args: cobra.RangeArgs(2, 3), RunE: func(cmd *cobra.Command, args []string) error { owner, repo, err := parseGitHubURL(args[0])