2022-09-20 21:26:01 +02:00
|
|
|
//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.
|
|
|
|
|
2023-10-01 10:24:33 +02:00
|
|
|
package util
|
2022-09-20 21:26:01 +02:00
|
|
|
|
|
|
|
func IsErrDot(err error) bool {
|
|
|
|
return false
|
|
|
|
}
|