github.com/containers/podman/v4@v4.9.4/pkg/machine/qemu/options_windows.go (about) 1 package qemu 2 3 import ( 4 "os" 5 ) 6 7 func getRuntimeDir() (string, error) { 8 tmpDir, ok := os.LookupEnv("TEMP") 9 if !ok { 10 tmpDir = os.Getenv("LOCALAPPDATA") + "\\Temp" 11 } 12 return tmpDir, nil 13 } 14 15 func useNetworkRecover() bool { 16 return false 17 }