lychee-slicer/platform/linux.go

18 lines
332 B
Go
Raw Permalink Normal View History

2024-10-20 21:04:38 +00:00
//go:build linux
package platform
func IsWindowsRetryable(_ error) bool {
return false
}
func WindowsRename(from, to string) error {
panic("not implemented")
}
func FindProgram() string {
// who knows, could be a million things, including this executable itself
// let the user/packager decide where to find it
return ""
}