Changeset 1083 for java/installer2/src


Ignore:
Timestamp:
Oct 21, 2017, 2:17:15 PM (7 years ago)
Author:
alloc
Message:

AEI 2.28(.2): Fixed minor mistakes in 2.28

File:
1 edited

Legend:

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

    r1082 r1083  
    361361                                if (bslWinFolder.exists() && (PlatformInformation.getPlatform() == Platform.WIN || PlatformInformation
    362362                                                .getPlatform() == Platform.LINUX)) {
    363                                         copyBsl(sourceMod, log, bslCommonFolder, sourceMod.getBSLInstallType() == EBSLInstallType.ADDON, clearedFolders);
     363                                        copyBsl(sourceMod, log, bslWinFolder, sourceMod.getBSLInstallType() == EBSLInstallType.ADDON, clearedFolders);
    364364                                }
    365365                               
    366366                                if (bslMacFolder.exists() && PlatformInformation.getPlatform() == Platform.MACOS) {
    367                                         copyBsl(sourceMod, log, bslCommonFolder, sourceMod.getBSLInstallType() == EBSLInstallType.ADDON, clearedFolders);
     367                                        copyBsl(sourceMod, log, bslMacFolder, sourceMod.getBSLInstallType() == EBSLInstallType.ADDON, clearedFolders);
    368368                                }
    369369                        } else {
     
    385385                        File targetLevelFolder = new File(targetBaseFolder, sourceLevelFolder.getName());
    386386                       
    387                         if (!(CaseInsensitiveFile.getCaseInsensitiveFile(targetLevelFolder,
     387                        if ((CaseInsensitiveFile.getCaseInsensitiveFile(targetLevelFolder,
    388388                                        "ignore.txt").exists())) {
    389389                                // Ignore feature: Don't apply any changes to the target level folder if it contains an "ignore.txt" file
Note: See TracChangeset for help on using the changeset viewer.