//go:build !linux package appbackup import "os" // chownGID is a no-op off Linux (the dev machine has no POSIX group ownership). Production is Linux. func chownGID(path string, gid int) error { return nil } // StatGID is unavailable off Linux. func StatGID(fi os.FileInfo) (int, bool) { return -1, false }