contrib/utils/utils_other.go (8 lines of code) (raw):
//go:build !linux
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package utils
import (
"context"
"os/exec"
)
func newExecCommand(ctx context.Context, name string, args ...string) *exec.Cmd {
return exec.CommandContext(ctx, name, args...)
}