Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
Fix module-name given to the Kotlin compiler for each module
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Feb 8, 2020
1 parent f5429fb commit 1fecef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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(':', '')]
}
}
}

0 comments on commit 1fecef8

Please sign in to comment.