JAL-3210 added absolute path for transpile log
authorBen Soares <b.soares@dundee.ac.uk>
Mon, 21 Oct 2019 23:36:55 +0000 (00:36 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Mon, 21 Oct 2019 23:36:55 +0000 (00:36 +0100)
build.gradle

index 5d0674b..fc47cb6 100644 (file)
@@ -1496,7 +1496,7 @@ task jalviewjsTranspile(type: Exec) {
     stdout = new ByteArrayOutputStream()
     stderr = new ByteArrayOutputStream()
 
-    def logOutFileName = "${jalviewjsBuildDir}/${jalviewjs_j2s_stdout}"
+    def logOutFileName = "${jalviewDirAbsolutePath}/${jalviewjsBuildDir}/${jalviewjs_j2s_stdout}"
     def logOutFile = file(logOutFileName)
     logOutFile.createNewFile()
     def logOutFOS = new FileOutputStream(logOutFile, false)
@@ -1529,7 +1529,7 @@ task jalviewjsTranspile(type: Exec) {
   doLast {
     if (stdout.toString().contains("Error processing ")) {
       // j2s did not complete transpile
-      throw new GradleException("Error during transpilation:\n${stderr}\nSee eclipse transpile log files '${jalviewjsBuildDir}/${jalviewjs_j2s_stdout}' and '${jalviewjsBuildDir}/${jalviewjs_j2s_stderr}'\n")
+      throw new GradleException("Error during transpilation:\n${stderr}\nSee eclipse transpile log file '${jalviewjsBuildDir}/${jalviewjs_j2s_stdout}'")
     }
   }