[ci skip] fix classpath split on Windows for generator CLI

This commit is contained in:
Lulu13022002
2025-06-06 21:30:23 +02:00
parent 774c40e712
commit 94fefb88e6

View File

@@ -48,7 +48,7 @@ public class Main implements Callable<Integer> {
@CommandLine.Option(names = {"--sourceset"}, required = true)
Path sourceSet;
@CommandLine.Option(names = {"-cp", "--classpath"}, split = ":", required = true)
@CommandLine.Option(names = {"-cp", "--classpath"}, split = "[;:]", required = true)
Set<Path> classpath;
@CommandLine.Option(names = {"--rewrite"})