2021-08-23 17:21:09 +00:00
|
|
|
//go:build !windows
|
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package selfupdate
|
|
|
|
|
|
|
|
// Remove the target binary.
|
2023-05-18 17:27:38 +00:00
|
|
|
func removeResticBinary(_, _ string) error {
|
2021-08-23 17:21:09 +00:00
|
|
|
// removed on rename on this platform
|
|
|
|
return nil
|
|
|
|
}
|