build/boot/roms: nicer indent style on switch loop

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe 2023-06-20 01:09:11 +01:00
parent 9510d749e1
commit 794def924c
1 changed files with 4 additions and 4 deletions

View File

@ -53,16 +53,16 @@ main()
while [ $# -gt 0 ]; do
case ${1} in
-d)
-d)
opts="${opts} -d ${2}"
shift ;;
-p)
-p)
opts="${opts} -p ${2}"
shift ;;
-k)
-k)
opts="${opts} -k ${2}"
shift ;;
*)
*)
boards="${boards} ${1} " ;;
esac
shift