This commit is contained in:
Varuna Jayasiri
2021-07-16 08:46:12 +05:30
parent 876845d0c2
commit cff11612a0
18 changed files with 1699 additions and 195 deletions

View File

@ -254,8 +254,9 @@ def main():
with monit.section(str(p)):
if source_path.suffix == '.svg':
parse(source_path, source_path)
shutil.copy(str(source_path), str(dest_path))
parse(source_path, dest_path)
else:
shutil.copy(str(source_path), str(dest_path))
if __name__ == '__main__':