Ignore:
Timestamp:
Apr 3, 2013, 2:56:19 AM (12 years ago)
Author:
alloc
Message:

AEI2.00:

  • Fix tool installation - executable bit
File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/installer2/src/net/oni2/aeinstaller/backend/packages/unpack/Unpacker.java

    r783 r784  
    124124                                                target.mkdirs();
    125125
    126                                                 for (Enumeration<? extends ZipArchiveEntry> e = zf.getEntries(); e
    127                                                                 .hasMoreElements();) {
     126                                                for (Enumeration<? extends ZipArchiveEntry> e = zf
     127                                                                .getEntries(); e.hasMoreElements();) {
    128128                                                        ZipArchiveEntry ze = e.nextElement();
    129129                                                        if (ze.getName().toLowerCase()
     
    138138                                                }
    139139
    140                                                 for (Enumeration<? extends ZipArchiveEntry> e = zf.getEntries(); e
    141                                                                 .hasMoreElements();) {
     140                                                for (Enumeration<? extends ZipArchiveEntry> e = zf
     141                                                                .getEntries(); e.hasMoreElements();) {
    142142                                                        if (state == EState.INTERRUPTED)
    143143                                                                return;
     
    163163                                                                                }
    164164                                                                                fileOut.close();
    165                                                                                
     165
    166166                                                                                if ((ze.getUnixMode() & 0111) != 0)
    167167                                                                                        targetFile.setExecutable(true);
Note: See TracChangeset for help on using the changeset viewer.