File tree 2 files changed +10
-2
lines changed
codebook-cli/src/main/java/io/papermc/codebook/cli
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,8 @@ static class InputFileOptions {
270
270
271
271
@ CommandLine .Option (
272
272
names = {"-c" , "--input-classpath" },
273
- split = ":" ,
273
+ split = ":(?!\\ \\ )" ,
274
+ splitSynopsisLabel = ":" ,
274
275
paramLabel = "<jar>" ,
275
276
description =
276
277
"Additional classpath jars, provided in standard classpath format (use : to separate jars on the path)." )
@@ -309,6 +310,12 @@ static class InputFileOptions {
309
310
defaultValue = "false" )
310
311
private boolean verbose ;
311
312
313
+ @ CommandLine .Option (
314
+ names = {"--temp-dir" },
315
+ paramLabel = "<temp-dir>" ,
316
+ description = "The temp dir to work in." )
317
+ private @ Nullable Path tempDir ;
318
+
312
319
public Main () {}
313
320
314
321
public static void main (final String [] args ) {
@@ -462,6 +469,7 @@ private CodeBookContext createContext() {
462
469
}
463
470
464
471
return CodeBookContext .builder ()
472
+ .tempDir (tempDir )
465
473
.remapperJar (remapper )
466
474
.mappings (mappings )
467
475
.paramMappings (paramMappings )
Original file line number Diff line number Diff line change 1
1
group = io.papermc.codebook
2
- version = 1.0.9
2
+ version = 1.0.10
You can’t perform that action at this time.
0 commit comments