[subversion:15] Fix for issue #100 - Cannot re-deploy (windows)
- From: dkaspar@kenai.com
- To: commits@eplugin.kenai.com
- Subject: [subversion:15] Fix for issue #100 - Cannot re-deploy (windows)
- Date: Thu, 8 Jan 2009 15:54:27 +0000 (GMT)
Repository: subversion
Revision: 15
Author: dkaspar
Date: 2009-01-08 15:54:25 UTC
Log Message:
-----------
Fix for issue #100 - Cannot re-deploy (windows)
Modified Paths:
--------------
trunk/com.sun.javafx.eclipse.core/src/com/sun/javafx/eclipse/core/launc
h/LaunchConfigurationDelegate.java
Diffs:
-----
Index:
trunk/com.sun.javafx.eclipse.core/src/com/sun/javafx/eclipse/core/launc
h/LaunchConfigurationDelegate.java
===================================================================
---
trunk/com.sun.javafx.eclipse.core/src/com/sun/javafx/eclipse/core/launc
h/LaunchConfigurationDelegate.java (revision 14)
+++
trunk/com.sun.javafx.eclipse.core/src/com/sun/javafx/eclipse/core/launc
h/LaunchConfigurationDelegate.java (revision 15)
@@ -303,7 +303,7 @@
process =
Runtime.getRuntime().exec(commandLine.toArray (new
String[commandLine.size ()]), envList != null ? envList.toArray (new
String[envList.size()]) : null);
launch.addProcess(new RuntimeProcess (launch,
process, "JavaFX Application", null));
process.waitFor();
- return true;
+ return process.exitValue() == 0;
} catch (Exception e) {
e.printStackTrace(); // TODO
}
|
[subversion:15] Fix for issue #100 - Cannot re-deploy (windows) |
dkaspar | 01/08/2009 |





