mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
ebe9f2c969
Restic now yields a more informative error message when exec.ErrDot occurs.
14 lines
368 B
Go
14 lines
368 B
Go
//go:build !go1.19
|
|
// +build !go1.19
|
|
|
|
// This file provides a stub for IsErrDot() for Go versions below 1.19.
|
|
// See the corresponding file errdot_119.go for more information.
|
|
// Once the minimum Go version restic supports is 1.19, remove this file
|
|
// and perform the actions listed in errdot_119.go.
|
|
|
|
package backend
|
|
|
|
func IsErrDot(err error) bool {
|
|
return false
|
|
}
|