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

Fixed variable name.

This commit is contained in:
Erik C. Thauvin 2017-03-24 20:54:02 -07:00
parent 3acf5dc2ad
commit 03f957f001

View file

@ -221,17 +221,17 @@ public class Main {
}
//
// Install the launcher if not already found.
// Install the launcher(s) if not already found.
//
File kobaltw = new File(KOBALTW);
File kobaltw_bat = new File(KOBALTW_BAT);
File kobaltwBat = new File(KOBALTW_BAT);
if (!kobaltw.exists()) {
generateKobaltW(kobaltw.toPath());
}
if (!kobaltw_bat.exists()) {
generateKobaltWBat(kobaltw_bat.toPath());
if (!kobaltwBat.exists()) {
generateKobaltWBat(kobaltwBat.toPath());
}
}