Skip to content

Commit

Permalink
Merge pull request #50 from AdrianDC/patch-1
Browse files Browse the repository at this point in the history
fix(snagfactory): resolve '~/.snagboot}' faulty configurations path
  • Loading branch information
rgantois authored Jan 13, 2025
2 parents 097bf60 + d5d71dd commit 6b632d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snagfactory/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self, config_path):
if platform.system() == "Windows":
snagboot_data = os.getenv('APPDATA') + "/snagboot"
else:
snagboot_data = os.getenv('HOME') + "/.snagboot}"
snagboot_data = os.getenv('HOME') + "/.config/snagboot"

self.snagboot_data = snagboot_data
self.snagfactory_logs = self.snagboot_data + "/snagfactory/logs"
Expand Down

0 comments on commit 6b632d1

Please sign in to comment.