Skip to content

Commit

Permalink
Revert weird change
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy authored and s0undt3ch committed Mar 19, 2024
1 parent 293f6b2 commit 35bc5fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/support/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def _default_config_path(self):
Default location for salt configurations
"""
if platform.is_windows():
config_path = pathlib.Path("C://salt", "etc", "salt")
config_path = pathlib.Path("C:\\salt", "etc", "salt")
else:
config_path = pathlib.Path("/etc", "salt")
return config_path
Expand Down Expand Up @@ -413,7 +413,7 @@ def salt_factories_root_dir(system_service: bool = False) -> pathlib.Path:
if system_service is False:
return None
if platform.is_windows():
return pathlib.Path("C:/salt")
return pathlib.Path("C:\\salt")
if platform.is_darwin():
return pathlib.Path("/opt/salt")
return pathlib.Path("/")
Expand Down

0 comments on commit 35bc5fc

Please sign in to comment.