diff options
author | Leah Rowe <leah@libreboot.org> | 2025-04-11 17:15:00 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-04-11 17:15:00 +0100 |
commit | f98b9b0110770f5381055fbaa20610130131df62 (patch) | |
tree | fc1b671d5c30671b7390f5311f3160ae02efb9b0 /build | |
parent | 8ccb61cc718fac3e4f62be772a3540b5aba2098c (diff) |
clean up a few semicolons in the build system
several code lines were condensed together, which
make them less readable. make the code more readable
by having separate commands on separate lines.
i previously did this during my manic build system
audits of 2023 and 2024; condensing lines like this
is overly pedantic and serves no real purpose.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-x | build | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -35,9 +35,15 @@ main() case "${spath#script/}" in version) printf "%s\nWebsite: %s\n" "$relname" "$projectsite" ;; - release) shift 1; mkrelease "$@" ;; - inject) shift 1; vendor_inject "$@" ;; - download) shift 1; vendor_download "$@" ;; + release) + shift 1 + mkrelease "$@" ;; + inject) + shift 1 + vendor_inject "$@" ;; + download) + shift 1 + vendor_download "$@" ;; roms) if [ $# -gt 1 ] && [ "$2" = "serprog" ]; then mk -b stm32-vserprog pico-serprog |