Files
podman/vendor/github.com/containers/buildah/pkg/util/uptime_windows.go
tomsweeneyredhat 7bd8864800 Bump to Buildah v1.27.0
As the title says.

Vendor Buildah v1.27.0 into Podman in preparation for Buildah v4.2

[No New Tests Needed]

Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
2022-08-08 22:17:51 -04:00

11 lines
150 B
Go

package util
import (
"errors"
"time"
)
func ReadUptime() (time.Duration, error) {
return 0, errors.New("readUptime not supported on windows")
}