From 9dc045c9dbb404b0415a931fe6c9ceae2c776ea8 Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Wed, 22 Nov 2023 11:38:41 -0800 Subject: [PATCH] Remove unneeded diff argument since ignoreExitValue is used Signed-off-by: Daniel Widdis --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index bdaef7944..924ad3b07 100644 --- a/build.gradle +++ b/build.gradle @@ -240,7 +240,7 @@ diffCoverageReport { file.withOutputStream { out -> exec { ignoreExitValue true - commandLine 'git', 'diff', '--no-color', '--minimal', diffBase, '|| true' + commandLine 'git', 'diff', '--no-color', '--minimal', diffBase standardOutput = out } }