Fix erro in debug changes

This commit is contained in:
BoykoAlex
2018-11-07 19:12:02 -05:00
parent 176b0b439d
commit 0788250644

View File

@@ -62,7 +62,7 @@ public class BootProjectUtil {
Path sources = home.resolve("src.zip");
System.out.println("Trying sources: " + sources);
try {
Files.list(sources).forEach(p -> System.out.println("entry=" + p + " exists=" + Files.exists(p)));
Files.list(home).forEach(p -> System.out.println("entry=" + p + " exists=" + Files.exists(p)));
} catch (IOException e) {
e.printStackTrace();
}