Skip to content

Commit a230b58

Browse files
committed
wrap classpath in set
1 parent c1cf2ea commit a230b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/com/google/firebase/gradle/plugins/DackkaGenerationTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ abstract class DackkaWorkAction @Inject constructor(private val execOperations:
242242
Logger.log("Set main class")
243243
args = parameters.args.get()
244244
Logger.log("Set args")
245-
classpath(parameters.dackkaFile.get())
245+
classpath(setOf(parameters.dackkaFile.get())) // no way it's actually this
246246
Logger.log("Set classpath")
247247
}
248248
.rethrowFailure()

0 commit comments

Comments
 (0)