mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
12 lines
437 B
Go
12 lines
437 B
Go
// Read, write and edit the config file
|
|
// Non-unix specific functions.
|
|
|
|
//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) {}
|