We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c300f62 commit d64d9b0Copy full SHA for d64d9b0
cli/src/main/java/dev/starfix/Starfix.java
@@ -125,7 +125,7 @@ public static File getConfigFile() {
125
File configDir = new File(userHome+ "/.config");
126
127
if(!configDir.exists()){ // If .config directory does not exist we create it
128
- if(!configDir.mkdir()){ // If creation failed
+ if(!configDir.mkdirs()){ // If creation failed
129
throw new IllegalStateException("Cannot create .config directory: " + configDir.getAbsolutePath());
130
}
131
0 commit comments