From 1f5cbec677eaf71e83baec5d9d603af0d7f86fd8 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 29 Nov 2016 08:38:17 -0500 Subject: [PATCH] slackware-sync: usage correction Signed-off-by: Vincent Batts --- cmd/slackware-sync/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/slackware-sync/main.go b/cmd/slackware-sync/main.go index 6e29ac9..06b8331 100644 --- a/cmd/slackware-sync/main.go +++ b/cmd/slackware-sync/main.go @@ -87,7 +87,7 @@ type Mirror struct { } var ( - flSyncDir = flag.String("dir", "", "directory to sync to (this flag overrides the url in the configuration file)") + flSyncDir = flag.String("dir", "", "directory to sync to (this flag overrides the sync_dir in the configuration file)") flConfigFile = flag.String("c", path.Join(os.Getenv("HOME"), ".slackware-sync.toml"), "config file for the sync") flQuiet = flag.Bool("q", false, "less output") )