diff --git a/maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt b/maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt index 78c1619546..38a8ad7ec0 100644 --- a/maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt +++ b/maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt @@ -67,7 +67,7 @@ private fun generateBinding( } private fun compileBinding(sourceFilePaths: List): Path { - val compilationOutput = createTempDirectory() + val compilationOutput = createTempDirectory(prefix = "gwkt-classes_") val args = K2JVMCompilerArguments().apply { @@ -98,7 +98,7 @@ private fun compileBinding(sourceFilePaths: List): Path { } private fun List.prepareDirectoryWithSources(): Pair, Path> { - val directory = createTempDirectory() + val directory = createTempDirectory(prefix = "gwkt-sources_") val sourceFilePaths = this .map { binding ->