Skip to content

Commit 3e57a6a

Browse files
committed
fix windows config path regression
The path no longer included the path separator between the env and our config dir. The regression was added in commit 6c651df. Fixes #2025 Signed-off-by: Paul Holzinger <[email protected]>
1 parent d73b330 commit 3e57a6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/config/config_windows.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "os"
55
const (
66
// _configPath is the path to the containers/containers.conf
77
// inside a given config directory.
8-
_configPath = "containers\\containers.conf"
8+
_configPath = "\\containers\\containers.conf"
99

1010
// DefaultContainersConfig holds the default containers config path
1111
DefaultContainersConfig = ""

0 commit comments

Comments
 (0)