mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 11:01:18 +00:00
Some files in integration did not have _test, resulting in lots of complains when running golangci-lint with --tests=false. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
12 lines
208 B
Go
12 lines
208 B
Go
//go: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) {
|
|
}
|