1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-11 21:49:00 +00:00

support nested variables

This commit is contained in:
deadc0de6
2023-04-11 21:34:32 +02:00
committed by deadc0de
parent d4345e181f
commit 02cb9708e1
5 changed files with 94 additions and 33 deletions

View File

@@ -166,8 +166,9 @@ class Updater:
return tmp
def _is_template(self, path):
if not Templategen.is_template(path, ignore=self.ignores,
debug=self.debug):
if not Templategen.path_is_template(path,
ignore=self.ignores,
debug=self.debug):
self.log.dbg(f'{path} is NO template')
return False
self.log.warn(f'{path} uses template, update manually')