Commit d47567c3 authored by Michal Čihař's avatar Michal Čihař

Clean link cache on rename

Fixes rb#171
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent deed0e0d
......@@ -190,6 +190,10 @@ class PathMixin(LoggerMixin):
)
os.rename(old_path, new_path)
# Clean subproject cache on rename
if hasattr(self, '_linked_subproject'):
self._linked_subproject = None
def create_path(self):
"""
Create filesystem directory for storing data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment