JAL-3577 Quick fix adding quotation marks for findProperty("JALVIEW_VERSION")==null...
authorBen Soares <b.soares@dundee.ac.uk>
Thu, 24 Sep 2020 17:16:17 +0000 (18:16 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Thu, 24 Sep 2020 17:17:01 +0000 (18:17 +0100)
build.gradle

index 4fe4088..3651689 100644 (file)
@@ -111,7 +111,7 @@ ext {
   }
   ////
   // Set JALVIEW_VERSION if it is not already set
-  if (findProperty(JALVIEW_VERSION)==null || "".equals(JALVIEW_VERSION)) {
+  if (findProperty("JALVIEW_VERSION")==null || "".equals(JALVIEW_VERSION)) {
     JALVIEW_VERSION = releaseProps.get("jalview.version")
   }