Changeset 17823 for release-kits/shared


Ignore:
Timestamp:
2008-11-12T12:36:50+13:00 (15 years ago)
Author:
oranfry
Message:

dont proceed if we cant create the folder, and dont show hidden files

Location:
release-kits/shared/ant-installer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/input/DirectoryInput.java

    r17622 r17823  
    7878                catch (Exception ex) {
    7979                    mr.printMessage(org.tp23.antinstaller.Installer.langPack.getString("canNotCreateFile") + "\n" + file.getAbsolutePath());
     80                    return false;
    8081                    //FIXME should not throw here, should do something better so users on linux can chmod where necessary
    8182                    // then try again
    82                     throw new ValidationException(org.tp23.antinstaller.Installer.langPack.getString("canNotCreateFile"),ex);
     83                    //throw new ValidationException(org.tp23.antinstaller.Installer.langPack.getString("canNotCreateFile"),ex);
    8384                   
    8485                }
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/renderer/swing/DirectoryInputRenderer.java

    r17569 r17823  
    9393                if(chooser==null){
    9494                    chooser = new DefaultingDirectoryChooser(createMode);
    95                     chooser.setFileHidingEnabled(false);
     95                    //chooser.setFileHidingEnabled(false);
    9696                }
    9797
Note: See TracChangeset for help on using the changeset viewer.