SCons: do not include backup files in build (#2221)
* SCons: do not include backup files in build * fbt: now GlobRecursive by default excludes backup files * fbt: added backup file exclusion to plain libs Signed-off-by: Michal Suchanek <msuchanek@suse.de> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
@@ -78,7 +78,9 @@ if assetsenv["IS_BASE_FIRMWARE"]:
|
||||
resources = assetsenv.Command(
|
||||
"#/assets/resources/Manifest",
|
||||
assetsenv.GlobRecursive(
|
||||
"*", assetsenv.Dir("resources").srcnode(), exclude="Manifest"
|
||||
"*",
|
||||
assetsenv.Dir("resources").srcnode(),
|
||||
exclude=["Manifest"],
|
||||
),
|
||||
action=Action(
|
||||
'${PYTHON3} "${ASSETS_COMPILER}" manifest "${TARGET.dir.posix}" --timestamp=${GIT_UNIX_TIMESTAMP}',
|
||||
|
Reference in New Issue
Block a user