We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2118339 commit 1842514Copy full SHA for 1842514
1 file changed
maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt
@@ -67,7 +67,7 @@ private fun generateBinding(
67
}
68
69
private fun compileBinding(sourceFilePaths: List<Path>): Path {
70
- val compilationOutput = createTempDirectory()
+ val compilationOutput = createTempDirectory(prefix = "gwkt-classes_")
71
72
val args =
73
K2JVMCompilerArguments().apply {
@@ -98,7 +98,7 @@ private fun compileBinding(sourceFilePaths: List<Path>): Path {
98
99
100
private fun List<ActionBinding>.prepareDirectoryWithSources(): Pair<List<Path>, Path> {
101
- val directory = createTempDirectory()
+ val directory = createTempDirectory(prefix = "gwkt-sources_")
102
val sourceFilePaths =
103
this
104
.map { binding ->
0 commit comments