17 lines
332 B
Go
17 lines
332 B
Go
//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 ""
|
|
}
|