automation-tests/cmd/podman/remoteclientconfig/config_windows.go

13 lines
234 B
Go

package remoteclientconfig
import (
"path/filepath"
"github.com/docker/docker/pkg/homedir"
)
func getConfigFilePath() string {
homeDir := homedir.Get()
return filepath.Join(homeDir, "AppData", "podman", remoteConfigFileName)
}