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 907580d commit 9c6721aCopy full SHA for 9c6721a
1 file changed
maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/JarBuilding.kt
@@ -47,7 +47,7 @@ internal fun ActionCoords.buildJars(types: String?): Jars? {
47
}
48
49
private fun compileBinding(sourceFilePaths: List<Path>): Path {
50
- val compilationOutput = createTempDirectory()
+ val compilationOutput = createTempDirectory(prefix = "gwkt-classes_")
51
52
val args =
53
K2JVMCompilerArguments().apply {
@@ -78,7 +78,7 @@ private fun compileBinding(sourceFilePaths: List<Path>): Path {
78
79
80
private fun List<ActionBinding>.prepareDirectoryWithSources(): Pair<List<Path>, Path> {
81
- val directory = createTempDirectory()
+ val directory = createTempDirectory(prefix = "gwkt-sources_")
82
val sourceFilePaths =
83
this
84
.map { binding ->
0 commit comments