mirror of
https://github.com/anchore/syft.git
synced 2025-11-19 09:23:15 +01:00
* update build tags, ui support, and stereoscope, and release for windows support Signed-off-by: Christopher Angelo Phillips <christopher.phillips@anchore.com>
14 lines
192 B
Go
14 lines
192 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package source
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// GetXid is a placeholder for windows file information
|
|
func GetXid(info os.FileInfo) (uid, gid int) {
|
|
return -1, -1
|
|
}
|