diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-10 17:08:08 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-10 17:08:08 +0100 |
commit | 12f9afe62252d49743526e83d97e0f91171c8a48 (patch) | |
tree | e9453faa66000b6acf1ea5d274c3fa32dee74c3b | |
parent | fe00ab4e919fd2921f4f3f7b92707e81f914181c (diff) |
build/release/src: remove cbutils/ in srcdir
the builds were being created within that srcdir,
because build/release/src runs lbmk commands within
it, and one of them is building (re-building) it.
there's no point addressing this, other than rm -Rf
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/build/release/src | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/build/release/src b/script/build/release/src index 2dc6a6cf..20876837 100755 --- a/script/build/release/src +++ b/script/build/release/src @@ -167,6 +167,7 @@ purge_files() rm -Rf .git .gitignore */.git* coreboot/*/3rdparty/*/.git* \ coreboot/*/util/nvidia/cbootimage/.git* || \ err "purge_files rm-rf2: can't purge .git files/directories" + rm -Rf cbutils || err "purge_files: can't remove ${srcdir}/cbutils/" ) } |