1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Fix message in wrapper.

This commit is contained in:
Cedric Beust 2016-02-11 21:20:38 -08:00
parent b57b1845bc
commit 5d554a485a

View file

@ -167,7 +167,7 @@ public class Main {
Path to = Paths.get(new File(".").getAbsolutePath(), file); Path to = Paths.get(new File(".").getAbsolutePath(), file);
if (Files.exists(to)) { if (Files.exists(to)) {
log(2, " $to already exists, not overwriting it"); log(2, to + " already exists, not overwriting it");
continue; continue;
} else if (file.equals(KOBALTW)) { } else if (file.equals(KOBALTW)) {
generateKobaltW(to); generateKobaltW(to);