mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-21 09:46:59 +02:00
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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user