Bladeren bron

Issue 1882


git-svn-id: http://svn.dmdirc.com/trunk@4821 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6.3m1rc1
Shane Mc Cormack 16 jaren geleden
bovenliggende
commit
17e531b13b
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1
    1
      src/com/dmdirc/updater/components/LauncherComponent.java

+ 1
- 1
src/com/dmdirc/updater/components/LauncherComponent.java Bestand weergeven

100
     @Override
100
     @Override
101
     public boolean doInstall(final String path) throws Throwable {
101
     public boolean doInstall(final String path) throws Throwable {
102
         final File tmpFile = new File(path);
102
         final File tmpFile = new File(path);
103
-        if (platform.equalsIgnoreCase("Linux")) {
103
+        if (platform.equalsIgnoreCase("Linux") || platform.equalsIgnoreCase("unix")) {
104
             final File targetFile = new File(tmpFile.getParent() + File.separator + ".launcher.sh");
104
             final File targetFile = new File(tmpFile.getParent() + File.separator + ".launcher.sh");
105
 
105
 
106
             if (targetFile.exists()) {
106
             if (targetFile.exists()) {

Laden…
Annuleren
Opslaan