mirror of
https://github.com/containers/buildah.git
synced 2026-02-05 09:45:38 +01:00
This change is generated by `go1.23rc2 fix ./...`. Had to use go1.23rc2, since all released go versions have a bug preventing it from working with `go 1.22.0` in go.mod (opened https://github.com/golang/go/issues/68825, https://github.com/golang/go/issues/68824 for awareness). Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
18 lines
293 B
Go
18 lines
293 B
Go
//go:build !linux && !darwin
|
|
|
|
package parse
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/containers/buildah/define"
|
|
)
|
|
|
|
func getDefaultProcessLimits() []string {
|
|
return []string{}
|
|
}
|
|
|
|
func DeviceFromPath(device string) (define.ContainerDevices, error) {
|
|
return nil, errors.New("devices not supported")
|
|
}
|