1
mirror of https://github.com/rclone/rclone synced 2025-03-25 08:26:24 +01:00
Nick Craig-Wood 84b64dcdf9 Revert "Merge commit from fork"
This reverts commit 1e2b354456882ed22d8674b8bf37de55e0069514.
2024-11-14 16:20:06 +00:00

16 lines
224 B
Go

//go:build !windows
package local
import (
"time"
)
const haveSetBTime = false
// setBTime changes the birth time of the file passed in
func setBTime(name string, btime time.Time) error {
// Does nothing
return nil
}