Skip to content

Commit

Permalink
Fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
imbyungjun committed Jun 13, 2024
1 parent becd3ed commit fe0fdda
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public String getAgent() {
final File f = new File(pathEntry).getParentFile();
final File parentFile = f != null ? f : new File(".");

if (!parentFile.isDirectory()) {
continue;
}
final Collection<File> children = FileUtils.listFiles(parentFile, null, false);

for (File candidate : children) {
Expand Down

0 comments on commit fe0fdda

Please sign in to comment.