summaryrefslogtreecommitdiff
path: root/script/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-12 16:25:20 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-12 16:25:20 +0100
commit3400e5a12b630fa17c2df2c17554ae89f8aa3b36 (patch)
tree58c5f2d21a356bc3fccb03a04d14cbd1e18d9182 /script/build
parent4df3d09b01b179f0f74926f88fd7d62d7ef469ce (diff)
rel/src: fix multi-line command
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build')
-rwxr-xr-xscript/build/release/src4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/build/release/src b/script/build/release/src
index d425638c..c6cd595d 100755
--- a/script/build/release/src
+++ b/script/build/release/src
@@ -174,8 +174,8 @@ purge_files()
err "purge_files rm-rf2: can't purge .git files/directories"
rm -Rf cbutils || err "purge_files: can't remove ${srcdir}/cbutils/"
rm -Rf elf || err "purge_files: can't remove ${srcdir}/elf/"
- rm -Rf util-fw/rp2040/pico-serprog/build
- || err "purge_files: can't remove pico-serprog/build"
+ rm -Rf util-fw/rp2040/pico-serprog/build || \
+ err "purge_files: can't remove pico-serprog/build"
)
}