mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 19:05:32 +00:00
These tests can't be compiled on Windows, so add unix build tag. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
12 lines
216 B
Go
12 lines
216 B
Go
//go:build unix && !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// cmdLifecycleToParentIfPossible tries to exit if the parent process exits (only works on Linux).
|
|
func cmdLifecycleToParentIfPossible(c *exec.Cmd) {
|
|
}
|