Ignore:
Timestamp:
Jun 6, 2020, 2:45:46 PM (4 years ago)
Author:
alloc
Message:

Updater with a few more log lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/gui/MainWin.java

    r1089 r1134  
    4040        public MainWin() {
    4141                super("AEInstaller2 self updater");
    42                 System.out.println("AEI2 updater version 1.3");
     42                System.out.println("AEI2 updater version 1.4");
    4343                setLayout(new BorderLayout(2, 4));
    4444
     
    144144                                boolean showError = false;
    145145                               
    146                                 int x = svn.checkSVN("http://svn.aei.oni2.net",
    147                                                 new File(Paths.getPrefsPath(), "bin"));
     146                                File wcDir = new File(Paths.getPrefsPath(), "bin");
     147                                System.out.println("AEI WC path: " + wcDir.getAbsolutePath());
     148                                int x = svn.checkSVN("http://svn.aei.oni2.net", wcDir);
    148149                                switch (x) {
    149150                                        case -2: // No repos connection
     
    169170                                                }
    170171                                                showError = !svn.updateWC("http://svn.aei.oni2.net",
    171                                                                 new File(Paths.getPrefsPath(), "bin"),
     172                                                                wcDir,
    172173                                                                new SVNUpdateListener() {
    173174                                                                        public void statusUpdate(int done, int total) {
Note: See TracChangeset for help on using the changeset viewer.