Browse Source

Fix Regression with fixPlatformIndependentBuild Gradle Task.

MeFisto94 9 years ago
parent
commit
0bb947e5db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.gradle

+ 1 - 1
build.gradle

@@ -566,7 +566,7 @@ task patchPlatformIndependent(type: Copy) {
     into "dist/temp/"
     into "dist/temp/"
 
 
     filter { String line ->
     filter { String line ->
-        line.startsWith('#jdkhome=') ? '#jdkhome="/path/to/jdk"': line
+        line.startsWith('jdkhome=') ? '#jdkhome="/path/to/jdk"': line
     }
     }
 
 
     doLast {
     doLast {