13 lines
277 B
Go
13 lines
277 B
Go
|
package buildah
|
||
|
|
||
|
import (
|
||
|
"github.com/containers/storage/pkg/reexec"
|
||
|
)
|
||
|
|
||
|
// InitReexec is a wrapper for reexec.Init(). It should be called at
|
||
|
// the start of main(), and if it returns true, main() should return
|
||
|
// immediately.
|
||
|
func InitReexec() bool {
|
||
|
return reexec.Init()
|
||
|
}
|