We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a3c13a commit 90ac6b6Copy full SHA for 90ac6b6
2 files changed
etc/spring-scaffold.png
21.8 KB
spring-boot-generate/src/main/java/br/com/generate/ReadScaffoldInfo.java
@@ -26,7 +26,11 @@ public String getUserDir() {
26
currentLocation = Paths.get(".").toAbsolutePath().toString();
27
} else if (SystemUtils.IS_OS_WINDOWS) {
28
currentLocation = System.getProperty("user.dir");
29
- }
+ } else if (SystemUtils.IS_OS_MAC_OSX) {
30
+ currentLocation = Paths.get(".").toAbsolutePath().toString();
31
+ } else if (SystemUtils.IS_OS_MAC) {
32
33
+ }
34
return currentLocation;
35
}
36
0 commit comments