mirror of
https://github.com/restic/restic.git
synced 2025-02-08 15:36:51 +00:00
10 lines
187 B
Go
10 lines
187 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package selfupdate
|
|
|
|
// Remove the target binary.
|
|
func removeResticBinary(_, _ string) error {
|
|
// removed on rename on this platform
|
|
return nil
|
|
}
|