mirror of
https://github.com/containers/podman.git
synced 2025-12-05 04:40:47 +08:00
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>
11 lines
151 B
Go
11 lines
151 B
Go
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func ReadKernelVersion() (string, error) {
|
|
return "", errors.New("readKernelVersion not supported on windows")
|
|
|
|
}
|