1) Adding new starter pack.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@4937 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2006-08-16 16:20:51 +00:00
committed by derek
parent 1bb6bfa281
commit 9c4d6d6601
3 changed files with 67 additions and 3 deletions

View File

@ -297,7 +297,10 @@ public final class MainWindow extends JFrame implements ActionListener {
try {
String command = "";
if (Spark.isWindows()) {
command = Spark.getBinDirectory().getParentFile().getCanonicalPath() + "\\Spark.exe";
String sparkExe = Spark.getBinDirectory().getParentFile().getCanonicalPath() + "\\Spark.exe";
String starterExe = Spark.getBinDirectory().getParentFile().getCanonicalPath() + "\\starter.exe";
command = starterExe + " \"" + sparkExe + "\"";
}
else if (Spark.isMac()) {
command = "open -a Spark";