mirror of https://github.com/docker/cli.git
19 lines
425 B
Go
19 lines
425 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//go:build darwin || dragonfly || freebsd || netbsd || openbsd || solaris
|
|
|
|
package resource // import "go.opentelemetry.io/otel/sdk/resource"
|
|
|
|
import "os/exec"
|
|
|
|
func execCommand(name string, arg ...string) (string, error) {
|
|
cmd := exec.Command(name, arg...)
|
|
b, err := cmd.Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(b), nil
|
|
}
|