Skip to content

Commit ce64a20

Browse files
authored
Merge pull request #52 from plantbreeding/develop
Release 0.54
2 parents 67e9bf2 + 75b40b9 commit ce64a20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

java/cli/src/main/java/org/brapi/schematools/cli/GenerateSubCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=0.53.0
1+
version=0.54.0
22
org.gradle.configuration-cache=false

0 commit comments

Comments
 (0)