Skip to content
Snippets Groups Projects
Commit e3f182df authored by Georg Seibt's avatar Georg Seibt :nerd:
Browse files

additional warning in isGitDir(...)

parent af7fb473
No related branches found
No related tags found
No related merge requests found
......@@ -184,6 +184,7 @@ public class GitWrapper extends ToolWrapper {
public boolean isGitDir(File directory) {
if (!directory.isDirectory()) {
LOG.warning(() -> String.format("The file '%s' does not exist or is not a directory.", directory));
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment