Changeset 603 for AE/installer2/src/net/oni2/aeinstaller/backend/oni
- Timestamp:
- Jan 10, 2013, 5:25:51 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java
r602 r603 272 272 FileUtils.copyFile(keyConfVanilla, keyConfEdition); 273 273 274 // TODO: FileUtils.deleteDirectory(init); 274 FileUtils.deleteDirectory(init); 275 275 276 Date end = new Date(); 276 277 log.println("Initialization ended at " + sdf.format(end)); … … 384 385 } 385 386 } 387 388 /** 389 * Verify that the Edition is within a subfolder to vanilla Oni (..../Oni/Edition/AEInstaller) 390 * @return true if GDF can be found in the parent's parent-path 391 */ 392 public static boolean verifyRunningDirectory() { 393 return Paths.getVanillaGDF().exists() && Paths.getVanillaGDF().isDirectory(); 394 } 386 395 }
Note:
See TracChangeset
for help on using the changeset viewer.