mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 03:55:10 +00:00
Issue #1137 running flashplayer(debugger) executable in Linux/MacOs
This commit is contained in:
@@ -225,9 +225,8 @@ public class Main {
|
||||
@Override
|
||||
protected Object doInBackground() throws Exception {
|
||||
Process proc;
|
||||
String runStr = "\"" + exePath + "\" \"" + ffile + "\"";
|
||||
try {
|
||||
proc = Runtime.getRuntime().exec(runStr);
|
||||
proc = Runtime.getRuntime().exec(new String[]{exePath, ffile});
|
||||
} catch (IOException ex) {
|
||||
Logger.getLogger(MainFrameMenu.class.getName()).log(Level.SEVERE, null, ex);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user