Skip to content

Commit

Permalink
Fix file list
Browse files Browse the repository at this point in the history
  • Loading branch information
briandealwis committed Mar 14, 2017
1 parent 2accb3f commit 0aaf414
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void run() {
Files.walkFileTree(deployDir, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
System.out.println(">> " + file.relativize(deployDir));
System.out.println(">> " + file);
return FileVisitResult.CONTINUE;
}
});
Expand Down

0 comments on commit 0aaf414

Please sign in to comment.