mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
26.13.2007 e7934050009ce7e6f43e2ce7d56c827a23ac287e
opends/src/quicksetup/org/opends/quicksetup/installer/InstallLauncher.java
@@ -43,10 +43,6 @@
 */
public class InstallLauncher
{
  private static String COMMAND_NAME_WINDOWS = "setup.bat";
  private static String COMMAND_NAME_UNIX = "setup";
  /**
   * The main method which is called by the setup command lines.
   * @param args the arguments passed by the command lines.  In the case
@@ -93,10 +89,10 @@
      String arg;
      if (Utils.isWindows())
      {
        arg = COMMAND_NAME_WINDOWS;
        arg = Utils.getWindowsSetupFileName();
      } else
      {
        arg = COMMAND_NAME_UNIX;
        arg = Utils.getUnixSetupFileName();
      }
      /*
       * This is required because the usage message contains '{' characters that
@@ -142,11 +138,11 @@
    if (Utils.isWindows())
    {
      System.setProperty("org.opends.server.scriptName",
          COMMAND_NAME_WINDOWS);
          Utils.getWindowsSetupFileName());
    } else
    {
      System.setProperty("org.opends.server.scriptName",
          COMMAND_NAME_UNIX);
          Utils.getUnixSetupFileName());
    }
    ArrayList<String> newArgList = new ArrayList<String>();
    if (args != null)