mirror of
https://github.com/restic/restic.git
synced 2026-06-21 16:14:18 +00:00
10 lines
117 B
Go
10 lines
117 B
Go
//go:build !windows
|
|
|
|
package restorer
|
|
|
|
import "syscall"
|
|
|
|
func notEmptyDirError() error {
|
|
return syscall.ENOTEMPTY
|
|
}
|