You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
os.Symlink seems to create links with mode os.ModeSymlink | 0777 on linux (and os.ModeSymlink | 0666 on windows). From your output it seems that on darwin the default is os.ModeSymlink | 0755 ? If that is the case (and it's not a setting in your environment) I guess we need a fs/manifest_darwin.go to set a defaultSymlinkMode.
fs.Symlink creates a target with an absolute path, so I guess it is not symmetrical when used on a manifest. This feels like a bug to me. I'm not sure how easy that will be to fix.
The following test
fails on Mac with Go 1.11 with
Did I miss something obvious?
The text was updated successfully, but these errors were encountered: