Skip to content

Commit

Permalink
fix windows config path regression
Browse files Browse the repository at this point in the history
The path no longer included the path separator between the env and our
config dir. The regression was added in commit 6c651df.

Fixes containers#2025

Signed-off-by: Paul Holzinger <[email protected]>
  • Loading branch information
Luap99 authored and hswong3i committed Jun 5, 2024
1 parent b1c76cd commit a113b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down

0 comments on commit a113b49

Please sign in to comment.