- Timestamp:
- Feb 4, 2013, 12:02:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java
r663 r664 402 402 if (!(new File(targetPath, "ignore.txt").exists())) { 403 403 for (File fbsl : f.listFiles()) { 404 File targetFile = new File(targetPath, fbsl.getName()); 405 if (addon || !targetFile.exists()) { 406 try { 407 FileUtils.copyFile(fbsl, targetFile); 408 } catch (IOException e) { 409 e.printStackTrace(); 404 if (fbsl.getName().toLowerCase().endsWith(".bsl")) { 405 File targetFile = new File(targetPath, fbsl.getName()); 406 if (addon || !targetFile.exists()) { 407 try { 408 FileUtils.copyFile(fbsl, targetFile); 409 } catch (IOException e) { 410 e.printStackTrace(); 411 } 410 412 } 411 413 }
Note:
See TracChangeset
for help on using the changeset viewer.