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

Este commit está contenido en:
Albert S. 2022-06-23 11:09:55 +02:00
padre e01f5d6490
commit 72dae1f7be
Se han modificado 1 ficheros con 2 adiciones y 1 borrados

Ver fichero

@ -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");