mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 13:26:11 +08:00
296281a6eb
Some checks failed
Docker beta build / Build image job (push) Has been cancelled
Signed-off-by: crystalstall <crystalruby@qq.com>
11 lines
365 B
Go
11 lines
365 B
Go
// Read, write and edit the config file
|
|
// Non-unix specific functions.
|
|
|
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
|
|
|
package configfile
|
|
|
|
// attemptCopyGroup tries to keep the group the same, which only makes sense
|
|
// for system with user-group-world permission model.
|
|
func attemptCopyGroup(fromPath, toPath string) {}
|