diff --git a/artifactory_cleanup/loaders.py b/artifactory_cleanup/loaders.py index 147be77..d96b47d 100644 --- a/artifactory_cleanup/loaders.py +++ b/artifactory_cleanup/loaders.py @@ -190,6 +190,7 @@ def get_connection(self) -> Tuple[str, str, str]: user = config["artifactory-cleanup"]["user"] password = config["artifactory-cleanup"]["password"] + server = os.path.expandvars(server) user = os.path.expandvars(user) password = os.path.expandvars(password) return server, user, password