Skip to content

Commit

Permalink
Merge pull request #457 from FNGarvin/main
Browse files Browse the repository at this point in the history
cli.py: remove errant slash preventing the loading of user conf file(s)
  • Loading branch information
ericcurtin authored Nov 15, 2024
2 parents 9fb9bb7 + 2d0a7eb commit c76577b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ramalama/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def load_config():
"/etc/ramalama/ramalama.conf",
]
config_home = os.getenv("XDG_CONFIG_HOME", os.path.join("~", ".config"))
config_paths.extend([os.path.expanduser(os.path.join(config_home, "/ramalama", "ramalama.conf"))])
config_paths.extend([os.path.expanduser(os.path.join(config_home, "ramalama", "ramalama.conf"))])

# Load configuration from each path
for path in config_paths:
Expand Down

0 comments on commit c76577b

Please sign in to comment.