skopeo/vendor/github.com/containers/common/pkg/retry/retry_linux.go
dependabot-preview[bot] 0c0a17b641
Bump github.com/containers/common from 0.33.0 to 0.33.1
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.33.0 to 0.33.1.
- [Release notes](https://github.com/containers/common/releases)
- [Commits](https://github.com/containers/common/compare/v0.33.0...v0.33.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-01-14 09:50:05 -05:00

10 lines
107 B
Go

package retry
import (
"syscall"
)
func isErrnoERESTART(e error) bool {
return e == syscall.ERESTART
}