Ignore:
Timestamp:
Apr 2, 2013, 2:16:52 AM (12 years ago)
Author:
alloc
Message:

AEI2.00:

  • Added "-usewd" param to use working directory instead of jar path
File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/AEInstaller2.java

    r772 r776  
    116116
    117117                boolean debug = false;
     118                boolean useWd = false;
    118119                boolean noCacheUpdate = false;
    119120                boolean offline = false;
     
    125126                        if (a.equalsIgnoreCase("-offline"))
    126127                                offline = true;
     128                        if (a.equalsIgnoreCase("-usewd"))
     129                                useWd = true;
    127130                }
    128131                if (!debug) {
     
    140143                SettingsManager.deserializeFromFile(Paths.getSettingsFilename());
    141144                SettingsManager.setDebug(debug);
     145                SettingsManager.setUseWorkingDir(useWd);
    142146                SettingsManager.getInstance().setNoCacheUpdateMode(noCacheUpdate);
    143147
     
    257261                        try {
    258262                                int x = svn.checkSVN("http://svn.aei.oni2.net",
    259                                                 new File(Paths.getPrefsPath(), "bin"));
     263                                                Paths.getJarPath());
    260264                                if (x > 0) {
    261265                                        // Update available or missing files
Note: See TracChangeset for help on using the changeset viewer.