cli: CommandAdd: Mention we read from stdin when no path is given

This commit is contained in:
Albert S. 2022-06-23 11:09:55 +02:00
parent e01f5d6490
commit 72dae1f7be
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ int CommandAdd::handle(QStringList arguments)
{{"t", "threads"}, "Number of threads to use.", "threads"}});
parser.addHelpOption();
parser.addPositionalArgument("add", "Add paths to the index", "add [paths...]");
parser.addPositionalArgument("add", "Add paths to the index",
"add [paths...]. If no path is given, read from stdin, one path per line.");
parser.process(arguments);
this->keepGoing = parser.isSet("continue");