1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
Fix for https://github.com/cbeust/kobalt/issues/176
This commit is contained in:
Cedric Beust 2016-04-25 21:10:37 -08:00
parent 23e0a15385
commit af889c5c77

View file

@ -251,6 +251,7 @@ public class Main {
// Save wrapperVersion.txt
//
log(2, " Writing " + VERSION_TXT);
VERSION_TXT.getParentFile().mkdirs();
try (FileWriter fw = new FileWriter(VERSION_TXT)) {
try (BufferedWriter bw = new BufferedWriter(fw)) {
bw.write(wrapperVersion);