summaryrefslogtreecommitdiff
path: root/script/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-10-02 04:21:42 +0100
committerLeah Rowe <leah@libreboot.org>2023-10-02 04:32:50 +0100
commita3b3196d6c93fc0360eb8156318ed73bad56bdb6 (patch)
tree7a7d9f9cc2f5e1068ba96064f4b6da739f578a76 /script/build
parent3fcad603b2772a3d19a84a922de651a3626a43e3 (diff)
build/grub/payload: remove unnecessary linebreaks
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build')
-rwxr-xr-xscript/build/grub/payload9
1 files changed, 3 insertions, 6 deletions
diff --git a/script/build/grub/payload b/script/build/grub/payload
index a1bb3554..03549ef6 100755
--- a/script/build/grub/payload
+++ b/script/build/grub/payload
@@ -21,12 +21,9 @@ main()
handle_dependencies()
{
- [ -d "grub/" ] || \
- x_ ./update project repo grub
- [ -f "grub/grub-mkstandalone" ] || \
- x_ ./build grub utils
- [ -d "${elfdir}" ] || \
- x_ mkdir -p "${elfdir}"
+ [ -d "grub/" ] || x_ ./update project repo grub
+ [ -f "grub/grub-mkstandalone" ] || x_ ./build grub utils
+ [ -d "${elfdir}" ] || x_ mkdir -p "${elfdir}"
x_ rm -f "${elfdir}/"*
}