diff --git a/README.md b/README.md index 7cc2f11..347938e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Usage: Flags: -h, --help help for sync -m, --mapping-file string Mapping file path to use for mapping teams members handles - -k, --skip-teams Skip addin members and repos to teams that are already exist to save on API requests (default "false") + -k, --skip-teams Skips adding members and repos to teams that already exist to save on API requests (default "false") -u, --source-hostname string GitHub Enterprise source hostname url (optional) Ex. https://github.example.com -s, --source-organization string Source Organization to sync teams from -a, --source-token string Source Organization GitHub token. Scopes: read:org, read:user, user:email diff --git a/cmd/sync.go b/cmd/sync.go index b1daf73..3315e75 100644 --- a/cmd/sync.go +++ b/cmd/sync.go @@ -74,6 +74,6 @@ func init() { syncCmd.Flags().StringP("user-sync", "z", "all", "User sync mode. One of: all, disable (default \"none\")") - syncCmd.Flags().BoolP("skip-teams", "k", false, "Skip teams that are already exist to save on API requests (default \"false\")") + syncCmd.Flags().BoolP("skip-teams", "k", false, "Skips adding members and repos to teams that already exist to save on API requests (default \"false\")") }