intial release
This commit is contained in:
parent
abbfcabe8d
commit
dd7e923bff
11 changed files with 1234 additions and 0 deletions
17
platform/linux.go
Normal file
17
platform/linux.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
//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 ""
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue