From c9842fc890ed4f736e706c75b3cace8518f12ceb Mon Sep 17 00:00:00 2001 From: brettweavnet Date: Tue, 12 Aug 2014 20:39:10 -0700 Subject: [PATCH] fix for latest cli --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index df5a907..480ae68 100644 --- a/main.go +++ b/main.go @@ -18,8 +18,8 @@ func main() { app.Usage = "gosync OPTIONS SOURCE TARGET" app.Version = version.Version() app.Flags = []cli.Flag{ - cli.IntFlag{"concurrent, c", 20, "number of concurrent transfers"}, - cli.StringFlag{"log-level, l", "info", "log level"}, + cli.IntFlag{"concurrent, c", 20, "number of concurrent transfers", ""}, + cli.StringFlag{"log-level, l", "info", "log level", ""}, } const concurrent = 20