1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/docker/multiarch.go

11 lines
291 B
Go
Raw Normal View History

package docker
import (
"github.com/SAP/jenkins-library/pkg/piperutils"
)
// IsBinfmtMiscSupportedByHost checks if the hosts kernel does support binfmt_misc
func IsBinfmtMiscSupportedByHost(utils piperutils.FileUtils) (bool, error) {
return utils.DirExists("/proc/sys/fs/binfmt_misc")
}