Files
podman/pkg/machine/shim/claim_unsupported.go
Matt Heon ec68f07c04 Fix Lint on Windows and enable the job
[NO NEW TESTS NEEDED] Purely refactoring

Signed-off-by: Matt Heon <mheon@redhat.com>
2024-02-20 08:06:18 -05:00

26 lines
401 B
Go

//go:build !darwin
package shim
func findClaimHelper() string {
return ""
}
// All of these are unused on Windows but are used on Linux.
// So we're just silencing Windows lint warnings here.
//nolint:unused
func dockerClaimHelperInstalled() bool {
return false
}
//nolint:unused
func claimDockerSock() bool {
return false
}
//nolint:unused
func dockerClaimSupported() bool {
return false
}