Ignore:
Timestamp:
Feb 4, 2013, 12:02:05 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.99n:

  • Just made sure only bsl files are copied over from packages
File:
1 edited

Legend:

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

    r663 r664  
    402402                        if (!(new File(targetPath, "ignore.txt").exists())) {
    403403                                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                                                        }
    410412                                                }
    411413                                        }
Note: See TracChangeset for help on using the changeset viewer.