mirror of
https://github.com/containers/skopeo.git
synced 2025-08-25 01:29:02 +00:00
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>
10 lines
107 B
Go
10 lines
107 B
Go
package retry
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func isErrnoERESTART(e error) bool {
|
|
return e == syscall.ERESTART
|
|
}
|