1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -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 = new File(KOBALTW);
File kobaltw_bat = new File(KOBALTW_BAT); File kobaltwBat = new File(KOBALTW_BAT);
if (!kobaltw.exists()) { if (!kobaltw.exists()) {
generateKobaltW(kobaltw.toPath()); generateKobaltW(kobaltw.toPath());
} }
if (!kobaltw_bat.exists()) { if (!kobaltwBat.exists()) {
generateKobaltWBat(kobaltw_bat.toPath()); generateKobaltWBat(kobaltwBat.toPath());
} }
} }