summaryrefslogtreecommitdiff
path: root/include/vendor.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-28 14:45:20 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-28 14:45:20 +0100
commit35c487106a520cec24b1d76d10042ba51497a962 (patch)
treeff67f59b21bfd253603a5cefe3b81f9755b17d85 /include/vendor.sh
parentce03786f697796626c3e32451c2f8c6fc1e3bc38 (diff)
vendor.sh: remove unnecessary checks
again: the trees script already checks binaries, and already checks sources. if they exist, the relevant action is skipped entirely. we don't need to check it in vendor.sh, because the trees script already performs the same check. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/vendor.sh')
-rwxr-xr-xinclude/vendor.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vendor.sh b/include/vendor.sh
index 947a0f13..fe466627 100755
--- a/include/vendor.sh
+++ b/include/vendor.sh
@@ -60,10 +60,9 @@ bootstrap()
{
[ -d "$cbdir" ] || x_ ./update trees -f coreboot ${cbdir##*/}
for d in uefitool biosutilities bios_extract; do
- [ -d "src/$d" ] && continue
x_ ./update trees -f "$d"
done
- [ -f "$uefiextract" ] || x_ ./update trees -b uefitool
+ x_ ./update trees -b uefitool
[ ! -d "${kbc1126_ec_dump%/*}" ] || [ -f "$kbc1126_ec_dump" ] || x_ \
make -C "$cbdir/util/kbc1126"
[ -n "$MRC_refcode_cbtree" ] && \