X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=00e3e40f2bd67d5f89b34fd7b818003d820a0bd2;hb=88761692019661894f3d5fa897cccc61c055f339;hp=3bf1649fd8d7dcb021646c91c054a2b0218a3d2e;hpb=cb575bd620d3f32315de3ae47f7249a40e46ec89;p=jalview.git diff --git a/build.gradle b/build.gradle index 3bf1649..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) @@ -1801,7 +1800,7 @@ task sourceDist(type: Tar) { include(file(buildProperties).getName()) rename(file(buildProperties).getName(), "build_properties") filter({ line -> - line.replaceAll("^INSTALLATION=.*\$","INSTALLATION=SourceDist"+" git-commit\\\\:"+gitHash+" ["+gitBranch+"]") + line.replaceAll("^INSTALLATION=.*\$","INSTALLATION=Source Release"+" git-commit\\\\:"+gitHash+" ["+gitBranch+"]") }) }