We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 368249d commit 5cf377fCopy full SHA for 5cf377f
buildSrc/src/main/kotlin/org/modelix/CopyMps.kt
@@ -180,6 +180,10 @@ fun Project.copyMps(): File {
180
}
181
182
183
+ // fix bin/mps64.vmoptions
184
+ val vmOptionsFile = mpsHome.resolve("bin").resolve("mps64.vmoptions")
185
+ vmOptionsFile.writeText(vmOptionsFile.readLines().filterNot { it.trim().startsWith("#") }.joinToString("n"))
186
+
187
println("Extracting MPS done.")
188
return mpsHome
189
0 commit comments