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:
Paul Holzinger 2024-05-30 17:42:13 +02:00
parent 7faf60b163
commit 379a8b87bb
1 changed files with 1 additions and 1 deletions

View File

@ -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 = ""