feat(fallback): use dynamic filename

This commit is contained in:
Haoyu Xu
2021-08-08 16:27:58 -04:00
parent 7099bc8c27
commit bbaacd766d
5 changed files with 39 additions and 24 deletions

View File

@@ -99,7 +99,7 @@ class Builder:
)
fallback_thread = threading.Thread(
target=AlphaComposite,
args=(source_path + fallback_name, target_path + "../fallback"),
args=(source_path + fallback_name, target_path + "../{}".format(fallback_name)),
daemon=True,
)