mirror of
https://github.com/restic/restic.git
synced 2025-12-08 06:09:56 +00:00
9 lines
117 B
Go
9 lines
117 B
Go
//go:build !windows
|
|
|
|
package restorer
|
|
|
|
import "syscall"
|
|
|
|
func notEmptyDirError() error {
|
|
return syscall.ENOTEMPTY
|
|
}
|