From afffadb04e094d7cafdb0770a608ac17b26b21e2 Mon Sep 17 00:00:00 2001
From: Oliver Tonnhofer <olt@bogosoft.com>
Date: Mon, 22 Jul 2024 12:36:16 +0200
Subject: [PATCH] cmd: update help text for run (does not take files)

---
 config/config.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/config.go b/config/config.go
index b5b402b9..c00dfb74 100644
--- a/config/config.go
+++ b/config/config.go
@@ -301,7 +301,7 @@ func ParseRunImport(args []string) Base {
 	flags.DurationVar(&opts.ReplicationInterval, "replication-interval", time.Minute, "replication interval as duration (1m, 1h, 24h)")
 
 	flags.Usage = func() {
-		fmt.Fprintf(os.Stderr, "Usage: %s %s [args] [.osc.gz, ...]\n\n", os.Args[0], os.Args[1])
+		fmt.Fprintf(os.Stderr, "Usage: %s %s [args]\n\n", os.Args[0], os.Args[1])
 		flags.PrintDefaults()
 		os.Exit(2)
 	}