Skip to content

Commit

Permalink
#362 CFlint will scan up the full file tree for a .cflint file
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed Dec 24, 2017
1 parent ff43c82 commit 458deaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/CFLint.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void scan(final String folderName) {
ScanningProgressMonitorLookAhead.createInstance(this, folderName, progressUsesThread).startPreScan();
}
final File starterFile = new File(folderName);
setupConfigAncestry(starterFile.getParentFile());
setupConfigAncestry(starterFile.getAbsoluteFile().getParentFile());
scan(starterFile);
fireClose();
}
Expand Down

0 comments on commit 458deaf

Please sign in to comment.