github.com/cloud-green/juju@v0.0.0-20151002100041-a00291338d3d/wrench/wrench_windows.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package wrench 5 6 import "os" 7 8 // Windows is not fully POSIX compliant 9 // there is no syscall.Stat_t on Windows 10 func isOwnedByJujuUser(fi os.FileInfo) bool { 11 return true 12 }