Skip to content

Commit

Permalink
Corrects the scanning folder in the find command (fixes #14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Håkansson committed Feb 15, 2018
1 parent a3b9979 commit 47b2c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/daisy/dotify/cli/FindPEF.java
Expand Up @@ -89,7 +89,7 @@ public static void main(String[] args) throws FileNotFoundException {
if (dirStr!=null) {
dir = new File(dirStr);
} else {
dir = new File("");
dir = new File("").getAbsoluteFile();
}

boolean recursive = Boolean.parseBoolean(pr.getOptional().get(RECURSIVE_KEY));
Expand Down

0 comments on commit 47b2c39

Please sign in to comment.