aboutsummaryrefslogtreecommitdiffstats
path: root/worktree_darwin.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2018-03-12 15:30:49 +0100
committerGitHub <noreply@github.com>2018-03-12 15:30:49 +0100
commit71e37414308043c18b9263ea8b18f296345b3e54 (patch)
tree9c39915df072451fbfde8da2367765797e50bafb /worktree_darwin.go
parent1d28459504251497e0ce6132a0fadd5eb44ffd22 (diff)
parent4915f5834dbb588836ad787e728cf4a81364f5af (diff)
downloadgo-git-71e37414308043c18b9263ea8b18f296345b3e54.tar.gz
Merge pull request #778 from konsorten/fix-windows-symlink3
Worktree.Checkout: handling of symlink on Windows
Diffstat (limited to 'worktree_darwin.go')
-rw-r--r--worktree_darwin.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/worktree_darwin.go b/worktree_darwin.go
index 8eaffde..3b374c7 100644
--- a/worktree_darwin.go
+++ b/worktree_darwin.go
@@ -20,3 +20,7 @@ func init() {
}
}
}
+
+func isSymlinkWindowsNonAdmin(err error) bool {
+ return false
+}