From e88875647aff4e92bcad91d49e4ee1b439bb4ff8 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 56613a9e36..064cd8886d 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 @@ -47,7 +47,7 @@ internal fun ActionCoords.buildJars(types: String?): Jars? { } private fun compileBinding(sourceFilePaths: List): Path { - val compilationOutput = createTempDirectory() + val compilationOutput = createTempDirectory(prefix = "gwkt-classes_") val args = K2JVMCompilerArguments().apply { @@ -78,7 +78,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 ->