Skip to content

Commit

Permalink
fix typo on flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
amenocal committed May 14, 2024
1 parent 8b7a1d3 commit eb5098c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -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\")")

}

0 comments on commit eb5098c

Please sign in to comment.