From 1842514ec53470e8f36cb8e3e3f071aabd20d24b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Kautler?= Date: Tue, 20 Aug 2024 11:33:23 +0200 Subject: [PATCH] feat(abg): prefix the temporary directories --- .../typesafegithub/workflows/mavenbinding/JarBuilding.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ->