Bladeren bron

Merge branch 'ticket/70' into develop

tags/v1.6.0
James Moger 10 jaren geleden
bovenliggende
commit
e832a7d1a0
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2
    2
      src/main/java/com/gitblit/transport/ssh/SshDaemon.java

+ 2
- 2
src/main/java/com/gitblit/transport/ssh/SshDaemon.java Bestand weergeven

@@ -212,8 +212,8 @@ public class SshDaemon {
Files.touch(file);
try {
JnaUtils.setFilemode(file, JnaUtils.S_IRUSR | JnaUtils.S_IWUSR);
} catch (UnsupportedOperationException e) {
// Windows
} catch (UnsatisfiedLinkError | UnsupportedOperationException e) {
// Unexpected/Unsupported OS or Architecture
}

FileOutputStream os = new FileOutputStream(file);

Laden…
Annuleren
Opslaan