summaryrefslogtreecommitdiff
path: root/pkg/specgen/winpath_unsupported.go
blob: 4cd008fddcd91ad46687c5e67e32fd8282232ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//go:build !linux && !windows
// +build !linux,!windows

package specgen

func shouldResolveWinPaths() bool {
	return false
}

func shouldResolveUnixWinVariant(path string) bool {
	return false
}

func resolveRelativeOnWindows(path string) string {
	return path
}

func winPathExists(path string) bool {
	return false
}