rclone/fs/config/configfile/configfile_other.go

12 lines
437 B
Go
Raw Normal View History

// Read, write and edit the config file
// Non-unix specific functions.
2021-09-09 20:25:25 +08:00
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
package configfile
// 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) {}