X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=00e3e40f2bd67d5f89b34fd7b818003d820a0bd2;hb=8973a845700a2d89da1e836a8f4a691ecde3d2a0;hp=cbd65f2f92e73ead0e39a234210adbfcecfed25c;hpb=e6dea4b93a53786199b36a4c428afd3ca1faf6bf;p=jalview.git diff --git a/build.gradle b/build.gradle index cbd65f2..00e3e40 100644 --- a/build.gradle +++ b/build.gradle @@ -1141,13 +1141,12 @@ task linkCheck(type: JavaExec) { args = [ "${classesDir}/${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("${classesDir}/${help_dir}") outputs.file(helpLinksCheckerOutFile)