Explorar o código

Fix module-name given to the Kotlin compiler for each module

Aidan Follestad %!s(int64=5) %!d(string=hai) anos
pai
achega
1fecef8a82
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      build.gradle

+ 1 - 1
build.gradle

@@ -27,7 +27,7 @@ allprojects {
 subprojects {
   tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
     kotlinOptions {
-      freeCompilerArgs += ['-module-name', project.path.replace('/', '.').replace(':', '_')]
+      freeCompilerArgs += ['-module-name', project.path.replace(':', '')]
     }
   }
 }