Files
podman/pkg/machine/qemu/options_darwin.go
baude 4ab8a6f67e Improvements for machine
clean up ci failures and add appropriate arch,os exclusion tags

Signed-off-by: baude <bbaude@redhat.com>
2021-03-25 11:02:33 -05:00

16 lines
221 B
Go

package qemu
import (
"os"
"github.com/pkg/errors"
)
func getSocketDir() (string, error) {
tmpDir, ok := os.LookupEnv("TMPDIR")
if !ok {
return "", errors.New("unable to resolve TMPDIR")
}
return tmpDir, nil
}