mirror of
https://github.com/containers/skopeo.git
synced 2026-07-15 06:55:09 +00:00
Have imagebuildah reexport some constants and its own Mount type, to reduce the number of our dependencies that a prospective consumer of this package would also need to import directly. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> Closes: #84 Approved by: rhatdan
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()
|
|
}
|