Files
nomad/helper/testtask/testtask_windows.go
2019-01-17 18:43:13 +01:00

14 lines
188 B
Go

// +build windows
package testtask
import (
"fmt"
"os"
)
func executeProcessGroup(gid string) {
fmt.Fprintf(os.Stderr, "process groups are not supported on windows\n")
os.Exit(1)
}