From 9087547eaa4b8ade2297b6c4528cb9b087bb185b Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 5 Sep 2022 11:07:39 +0200 Subject: [PATCH] GitGrep: Don't pass SuppressFailMessage with SilentOutput SilentOutput defines SuppressFailMessage already. Change-Id: I80761ed2041f809968890464573863c47b3fac84 Reviewed-by: Orgad Shaneh --- src/plugins/git/gitgrep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/git/gitgrep.cpp b/src/plugins/git/gitgrep.cpp index 96dffe6ac49..07345f8b2fa 100644 --- a/src/plugins/git/gitgrep.cpp +++ b/src/plugins/git/gitgrep.cpp @@ -168,7 +168,7 @@ public: return QString(":!" + filter); }); arguments << "--" << filterArgs << exclusionArgs; - m_command->addFlags(VcsCommand::SilentOutput | VcsCommand::SuppressFailMessage); + m_command->addFlags(VcsCommand::SilentOutput); m_command->setProgressiveOutput(true); QFutureWatcher watcher; QObject::connect(&watcher,