summaryrefslogtreecommitdiff
path: root/dotbot/executor/linker.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/executor/linker.py')
-rw-r--r--dotbot/executor/linker.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dotbot/executor/linker.py b/dotbot/executor/linker.py
index f0e94bc..5c12ea0 100644
--- a/dotbot/executor/linker.py
+++ b/dotbot/executor/linker.py
@@ -19,6 +19,8 @@ class Linker(Executor):
def _process_links(self, links):
success = True
for destination, source in links.items():
+ source = os.path.expandvars(source)
+ destination = os.path.expandvars(destination)
if isinstance(source, dict):
# extended config
path = source['path']