1
0
mirror of https://github.com/restic/restic.git synced 2024-06-25 07:47:44 +02:00
restic/internal/selfupdate/download_unix.go
Michael Eischer 472bf5184f Replace lots of unused parameters with _
The parameters are required by the implemented function signature or interface.
2023-05-18 21:17:53 +02:00

11 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
}