From 84db65b054ea5f90810198483779090c490d3c32 Mon Sep 17 00:00:00 2001 From: Carlo Strub Date: Thu, 25 May 2017 21:09:21 +0000 Subject: [PATCH] Improve help text --- sisyphus/sisyphus.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sisyphus/sisyphus.go b/sisyphus/sisyphus.go index 8b8d7b4..d71ffa6 100644 --- a/sisyphus/sisyphus.go +++ b/sisyphus/sisyphus.go @@ -11,7 +11,7 @@ import ( log "github.com/sirupsen/logrus" "github.com/carlostrub/sisyphus" - "github.com/urfave/cli" + "gopkg.in/urfave/cli.v2" ) var ( @@ -48,10 +48,10 @@ func main() { app.Flags = []cli.Flag{ cli.StringSliceFlag{ - Name: "maildirs, d", + Name: "maildir, d", Value: &maildirPaths, EnvVar: "SISYPHUS_DIRS", - Usage: "Comma separated list of paths to the Maildir directories", + Usage: "Call multiple Maildirs by repeating this flag, i.e. --maildir \"./Maildir\" --maildir \"./Maildir2\"", }, cli.StringFlag{ Name: "pidfile, p",