Skip to content

Commit

Permalink
fixing bad flag (#9)
Browse files Browse the repository at this point in the history
Working with customer, need to implement in real time.
  • Loading branch information
antgrutta authored Nov 7, 2023
1 parent 95fcc1c commit b0acd8f
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 @@ -40,7 +40,7 @@ Flags:
-a, --source-token string Source Organization GitHub token. Scopes: read:org, read:user, user:email
-t, --target-organization string Target Organization to sync teams from
-b, --target-token string Target Organization GitHub token. Scopes: admin:org
-u, --user-sync string User sync mode. One of: all, disable (default "none")
-z, --user-sync string User sync mode. One of: all, disable (default "none")
```

### Mapping File Example
Expand Down
2 changes: 1 addition & 1 deletion cmd/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ func init() {

syncCmd.Flags().StringP("source-hostname", "u", "", "GitHub Enterprise source hostname url (optional) Ex. https://github.example.com")

syncCmd.Flags().StringP("user-sync", "u", "all", "User sync mode. One of: all, disable (default \"none\")")
syncCmd.Flags().StringP("user-sync", "z", "all", "User sync mode. One of: all, disable (default \"none\")")

}

0 comments on commit b0acd8f

Please sign in to comment.