File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
cli/src/main/java/org/brapi/schematools/cli Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -394,10 +394,10 @@ private void outputRPaths(List<Path> paths) {
394394 System .out .println ("Did not generate any R files" );
395395 } else if (paths .size () == 1 ) {
396396 System .out .println ("Generated '1' R file:" );
397- System .out .println (paths .getFirst ().toString ());
397+ System .out .println (paths .getFirst ().toAbsolutePath (). toString ());
398398 } else {
399399 System .out .printf ("Generated '%s' R files:%n" , paths .size ());
400- paths .forEach (path -> System .out .println (path .toString ()));
400+ paths .forEach (path -> System .out .println (path .toAbsolutePath (). toString ()));
401401 }
402402 }
403403
Original file line number Diff line number Diff line change 1- version =0.53 .0
1+ version =0.54 .0
22org.gradle.configuration-cache =false
You can’t perform that action at this time.
0 commit comments