Skip to content

Commit

Permalink
Use correct start path for magik-typed-lint (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanspeck authored Nov 17, 2024
1 parent 2005c88 commit 9bffb85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public static void main(final String[] args)
}
properties = new MagikToolsProperties(path);
} else {
final Path currentWorkingPath = Path.of("");
final Path currentWorkingPath = Path.of(".");
final Path path = ConfigurationLocator.locateConfiguration(currentWorkingPath);
properties =
path != null ? new MagikToolsProperties(path) : MagikToolsProperties.DEFAULT_PROPERTIES;
Expand Down

0 comments on commit 9bffb85

Please sign in to comment.