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 8921ad98b6.
Fixes #2025
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
parent
7faf60b163
commit
379a8b87bb
|
|
@ -5,7 +5,7 @@ import "os"
|
|||
const (
|
||||
// _configPath is the path to the containers/containers.conf
|
||||
// inside a given config directory.
|
||||
_configPath = "containers\\containers.conf"
|
||||
_configPath = "\\containers\\containers.conf"
|
||||
|
||||
// DefaultContainersConfig holds the default containers config path
|
||||
DefaultContainersConfig = ""
|
||||
|
|
|
|||
Loading…
Reference in New Issue