mirror of
https://github.com/blender/blender-addons-contrib.git
synced 2025-07-21 23:47:35 +00:00
Extensions: don't include the extensions own temporary file
Exclude the extensions own temporary file when building an extension. Even though this file should be removed, it's possible the build process was killed for the system was turned off, so best explicitly exclude the file.
This commit is contained in:
@ -1974,6 +1974,9 @@ class subcmd_author:
|
||||
|
||||
filenames_root_exclude = {
|
||||
pkg_filename,
|
||||
# It's possible a temporary file exists from a previous run which was not cleaned up.
|
||||
# Although in general this should be cleaned up - power failure etc may mean it exists.
|
||||
pkg_filename + "@",
|
||||
# This is added, converted from the TOML.
|
||||
PKG_REPO_LIST_FILENAME,
|
||||
|
||||
|
Reference in New Issue
Block a user