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