Ignore:
Timestamp:
Mar 19, 2013, 11:00:06 AM (12 years ago)
Author:
alloc
Message:

AEI2 0.99u:

  • Fixed a few bugs in apply patches
  • Added some log output to apply patches
File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/Settings.java

    r649 r702  
    1010import java.util.Vector;
    1111
     12import net.oni2.aeinstaller.backend.appexecution.AppExecution;
     13import net.oni2.aeinstaller.backend.appexecution.AppExecutionResult;
     14
    1215import com.thoughtworks.xstream.XStream;
    1316import com.thoughtworks.xstream.io.xml.StaxDriver;
     
    7982                cmd.add("which");
    8083                cmd.add("wine");
    81                 Vector<String> res = null;
     84                AppExecutionResult res = null;
    8285                try {
    8386                        res = AppExecution.executeAndWait(cmd);
     
    8689                }
    8790                if (res != null) {
    88                         if (res.get(0).startsWith("/") && res.get(0).endsWith("wine")) {
    89                                 return res.get(0);
     91                        if (res.output.get(0).startsWith("/") && res.output.get(0).endsWith("wine")) {
     92                                return res.output.get(0);
    9093                        }
    9194                }
     
    133136                                cmd.add("getconf");
    134137                                cmd.add("LONG_BIT");
    135                                 Vector<String> res = null;
     138                                AppExecutionResult res = null;
    136139                                try {
    137140                                        res = AppExecution.executeAndWait(cmd);
     
    140143                                }
    141144                                if (res != null) {
    142                                         if (res.get(0).equals("64"))
     145                                        if (res.output.get(0).equals("64"))
    143146                                                return Architecture.AMD64;
    144147                                }
Note: See TracChangeset for help on using the changeset viewer.