From a469cbc191e26d7f3147d44fe1ec029e3a870b3c Mon Sep 17 00:00:00 2001 From: AlphaJack Date: Tue, 16 Sep 2025 00:45:46 +0200 Subject: [PATCH] feat: adding macos paths --- rusticlone/helpers/custom.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rusticlone/helpers/custom.py b/rusticlone/helpers/custom.py index 3e5f3c3..29e8773 100644 --- a/rusticlone/helpers/custom.py +++ b/rusticlone/helpers/custom.py @@ -76,6 +76,11 @@ def __init__(self, args) -> None: Path.home() / "AppData/Roaming/rustic/config", Path("C:/ProgramData/rustic/config"), ] + elif self.operating_system == "Darwin": + self.profiles_dirs = [ + Path.home() / "Library/Application Support/rustic", + Path("/etc/rustic"), + ] else: self.profiles_dirs = [ Path.home() / ".config/rustic",