mirror of
https://github.com/Luzifer/s3sync.git
synced 2024-12-20 19:41:15 +00:00
Fix: Remove -v
shorthand as it lead to confusion with "verbose" flags
This commit is contained in:
parent
3237e3fd8d
commit
4038d8a7f7
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
@ -51,7 +51,7 @@ func main() {
|
|||
|
||||
app.Flags().BoolVarP(&cfg.Public, "public", "P", false, "Make files public when syncing to S3")
|
||||
app.Flags().BoolVarP(&cfg.Delete, "delete", "d", false, "Delete files on remote not existing on local")
|
||||
app.Flags().BoolVarP(&cfg.PrintVersion, "version", "v", false, "Print version and quit")
|
||||
app.Flags().BoolVar(&cfg.PrintVersion, "version", false, "Print version and quit")
|
||||
app.Flags().IntVar(&cfg.MaxThreads, "max-threads", 10, "Use max N parallel threads for file sync")
|
||||
|
||||
app.Execute()
|
||||
|
|
Loading…
Reference in a new issue