From 26930c0022c3a97da17ed53e5c78c0a549bf9e34 Mon Sep 17 00:00:00 2001 From: Albert S Date: Thu, 2 Jun 2022 09:07:01 +0200 Subject: [PATCH] cli: CommandUpdate: Remove unimplemented -a --- cli/commandupdate.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cli/commandupdate.cpp b/cli/commandupdate.cpp index d31d380..957e143 100644 --- a/cli/commandupdate.cpp +++ b/cli/commandupdate.cpp @@ -17,7 +17,6 @@ int CommandUpdate::handle(QStringList arguments) "Continue adding files, don't exit on first error. If this option is not given, looqs will exit asap, but " "it's possible that a few files will still be processed. " "Set -t 1 to avoid this behavior, but processing will be slower."}, - {{"a", "all"}, "On error, no files should be updated, even already processed ones"}, {{"t", "threads"}, "Number of threads to use.", "threads"} }); @@ -32,10 +31,6 @@ int CommandUpdate::handle(QStringList arguments) bool dryRun = parser.isSet("dry-run"); QString pattern = parser.value("pattern"); - if(parser.isSet("all")) - { - throw LooqsGeneralException("To be implemented"); - } if(parser.isSet("threads")) { QString threadsCount = parser.value("threads");