mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
|
//go:build !windows
|
||
|
// +build !windows
|
||
|
|
||
|
package selfupdate
|
||
|
|
||
|
// Remove the target binary.
|
||
|
func removeResticBinary(dir, target string) error {
|
||
|
// removed on rename on this platform
|
||
|
return nil
|
||
|
}
|