- Timestamp:
- Jun 6, 2020, 2:45:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/AEInstaller2-Updater/src/net/oni2/aeinstaller/updater/gui/MainWin.java
r1089 r1134 40 40 public MainWin() { 41 41 super("AEInstaller2 self updater"); 42 System.out.println("AEI2 updater version 1. 3");42 System.out.println("AEI2 updater version 1.4"); 43 43 setLayout(new BorderLayout(2, 4)); 44 44 … … 144 144 boolean showError = false; 145 145 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); 148 149 switch (x) { 149 150 case -2: // No repos connection … … 169 170 } 170 171 showError = !svn.updateWC("http://svn.aei.oni2.net", 171 new File(Paths.getPrefsPath(), "bin"),172 wcDir, 172 173 new SVNUpdateListener() { 173 174 public void statusUpdate(int done, int total) {
Note:
See TracChangeset
for help on using the changeset viewer.