mirror of
https://github.com/containers/skopeo.git
synced 2025-04-28 03:10:18 +00:00
13 lines
225 B
Go
13 lines
225 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// cmdLifecycleToParentIfPossible tries to exit if the parent process exits (only works on Linux).
|
|
func cmdLifecycleToParentIfPossible(c *exec.Cmd) {
|
|
}
|