Skip to content

Commit 084ba53

Browse files
committed
feat(abg): prefix the temporary directories
1 parent 3a3c0f5 commit 084ba53

File tree

1 file changed

+2
-2
lines changed
  • maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding

1 file changed

+2
-2
lines changed

maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ internal fun ActionCoords.buildJars(types: String?): Jars? {
4747
}
4848

4949
private fun compileBinding(sourceFilePaths: List<Path>): Path {
50-
val compilationOutput = createTempDirectory()
50+
val compilationOutput = createTempDirectory(prefix = "gwkt-classes_")
5151

5252
val args =
5353
K2JVMCompilerArguments().apply {
@@ -78,7 +78,7 @@ private fun compileBinding(sourceFilePaths: List<Path>): Path {
7878
}
7979

8080
private fun List<ActionBinding>.prepareDirectoryWithSources(): Pair<List<Path>, Path> {
81-
val directory = createTempDirectory()
81+
val directory = createTempDirectory(prefix = "gwkt-sources_")
8282
val sourceFilePaths =
8383
this
8484
.map { binding ->

0 commit comments

Comments
 (0)