fixing build-in flasher

This commit is contained in:
rusefi 2019-07-13 18:48:03 -04:00
parent 9d8c147580
commit 464f5f698d
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20190706;
public static final int CONSOLE_VERSION = 20190713;
public static final boolean SHOW_STIMULATOR = false;
public static final String INPUT_FILES_PATH = "..";
private static final String TAB_INDEX = "main_tab";

View File

@ -12,7 +12,7 @@ public class ProcessStatusWindow {
protected StringBuffer executeCommand(String command) {
return ExecHelper.executeCommand(FirmwareFlasher.BINARY_LOCATION,
FirmwareFlasher.BINARY_LOCATION + File.pathSeparator + command,
FirmwareFlasher.BINARY_LOCATION + File.separator + command,
FirmwareFlasher.OPENOCD_EXE, wnd);
}
}