X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;fp=build.gradle;h=41a972b19a463ae7cf021b467d32f83e2132e9c7;hb=c1c19b38ad4af8dfc9afc83a6baed02ac4a3cd4b;hp=2c1a56d7ac5fc157ead5bcc36eab17001beeba3e;hpb=67d6b707767a63fe698412216fd088947546efd1;p=jalview.git diff --git a/build.gradle b/build.gradle index 2c1a56d..41a972b 100644 --- a/build.gradle +++ b/build.gradle @@ -1369,13 +1369,12 @@ task linkCheck(type: JavaExec) { args = [ "${helpBuildDir}/${help_dir}", "-nointernet" ] def outFOS = new FileOutputStream(helpLinksCheckerOutFile, false) // false == don't append - def errFOS = outFOS standardOutput = new org.apache.tools.ant.util.TeeOutputStream( outFOS, - standardOutput) + System.out) errorOutput = new org.apache.tools.ant.util.TeeOutputStream( outFOS, - errorOutput) + System.err) inputs.dir(helpBuildDir) outputs.file(helpLinksCheckerOutFile) @@ -2548,12 +2547,12 @@ DEBUG: ${eclipseDebug} new org.apache.tools.ant.util.TeeOutputStream( logOutFOS, stdout), - standardOutput) + System.out) errorOutput = new org.apache.tools.ant.util.TeeOutputStream( new org.apache.tools.ant.util.TeeOutputStream( logErrFOS, stderr), - errorOutput) + System.err) } else { standardOutput = new org.apache.tools.ant.util.TeeOutputStream( logOutFOS,