Skip to content

Commit

Permalink
Small fix for bug RohitAwate#39
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulo Fonseca committed Jul 9, 2020
1 parent d702872 commit 86d67e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public SQLiteManager() {
String configPath = "Everest/config/";
File configFolder = new File(configPath);
if (!configFolder.exists()) {
if (configFolder.mkdirs())
if (!configFolder.mkdirs())
LoggingService.logSevere("Unable to create directory: " + configPath, null, LocalDateTime.now());
}

Expand Down

0 comments on commit 86d67e7

Please sign in to comment.