mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
12 lines
176 B
Go
12 lines
176 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package local
|
|
|
|
import "os"
|
|
|
|
// Removes name, retrying on a sharing violation
|
|
func remove(name string) error {
|
|
return os.Remove(name)
|
|
}
|