podman/pkg/machine/options_darwin.go

12 lines
160 B
Go

package machine
import "os"
func getRuntimeDir() (string, error) {
tmpDir, ok := os.LookupEnv("TMPDIR")
if !ok {
tmpDir = "/tmp"
}
return tmpDir, nil
}