Fixed a launchExe() NullPointerException introduced in commit be8a84c

This commit is contained in:
Vhati 2017-12-07 14:49:51 -05:00
parent e5cee05775
commit 020ecc4145

View file

@ -331,7 +331,7 @@ public class FTLUtilities {
}
else {
String[] args = new String[1 + exeArgs.length];
args[0] = exeFile.getAbsolutePath();
System.arraycopy( exeArgs, 0, args, 1, exeArgs.length );
pb = new ProcessBuilder( args );