소스 검색

Fix JGit set core.fileMode to false by default instead of true for non Windows OS.

Issue 519887

Signed-off-by: Joan <joan@goyeau.com>
pull/52/head
Joan 6 년 전
부모
커밋
453798dab4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java 파일 보기

@@ -188,7 +188,7 @@ public class FS_POSIX extends FS {
if (!isFile(f))
return false;
if (!canExecute)
return f.setExecutable(false);
return f.setExecutable(false, false);

try {
Path path = f.toPath();

Loading…
취소
저장