Browse Source

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

stable-4.9
David Pursehouse 7 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
e237c28936
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/util/FS_POSIX.java

2
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…
Cancel
Save