feat(build scripts): skip .history folder when building UI files

This commit is contained in:
Daniel S. 2019-09-28 19:31:44 +02:00
parent 9ec4687e49
commit 92bd1b16ef
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@ import os
ui_path = os.path.dirname(os.path.abspath(__file__))
for root, folders, files in os.walk(ui_path):
if ".history" in folders:
folders.remove(".history")
for file in files:
file = os.path.join(root, file)
outfile, ext = os.path.splitext(file)