From f98b9b0110770f5381055fbaa20610130131df62 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 11 Apr 2025 17:15:00 +0100 Subject: 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 --- build | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'build') diff --git a/build b/build index 7a3ec3e9..f61018c6 100755 --- a/build +++ b/build @@ -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 -- cgit v1.2.1