mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:34:41 +01:00
11 lines
339 B
Go
11 lines
339 B
Go
|
// Read, write and edit the config file
|
||
|
// Non-unix specific functions.
|
||
|
|
||
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
||
|
|
||
|
package fs
|
||
|
|
||
|
// attemptCopyGroups tries to keep the group the same, which only makes sense
|
||
|
// for system with user-group-world permission model.
|
||
|
func attemptCopyGroup(fromPath, toPath string) {}
|