diff options
author | Leah Rowe <leah@libreboot.org> | 2025-07-10 01:07:55 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-07-10 01:07:55 +0100 |
commit | fb95230a4c343647e96c58f79b142ccc46e620af (patch) | |
tree | 88ee8d860113a48b06a2745b6a57869401be0ff8 /include | |
parent | e25bca2ef7798c0454130ae3ea85f37d8a2d87bd (diff) |
tree.sh: Remove redundant deletion
Target builds go inside a common directory for
the given tree now, which gets deleted, thus
deleting all target builds of that given tree.
Therefore, the deletion being removed is redundant.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/tree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tree.sh b/include/tree.sh index 59dd765c..ef96ac9b 100644 --- a/include/tree.sh +++ b/include/tree.sh @@ -193,7 +193,7 @@ check_project_hashes() err "!mk $XBMK_CACHE/hash/$project$tree" [ "$badhash" != "y" ] || x_ rm -Rf "src/$project/$tree" \ - "elf/$project/$tree" "elf/$project/$target"; : + "elf/$project/$tree"; : } check_cross_compiler() |