Skip to content

Commit

Permalink
Fix some tests (#1023)
Browse files Browse the repository at this point in the history
  • Loading branch information
imbyungjun authored Jun 13, 2024
1 parent becd3ed commit 09e50da
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 09e50da

Please sign in to comment.