mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-24 21:54:11 +02:00
scripts: fix indentation in switch/case blocks
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -50,10 +50,13 @@ main()
|
||||
|
||||
while getopts r:b:m: option
|
||||
do
|
||||
case "${option}"
|
||||
in
|
||||
r)rom=${OPTARG};;
|
||||
b)board=${OPTARG};;
|
||||
case "${option}" in
|
||||
r)
|
||||
rom=${OPTARG}
|
||||
;;
|
||||
b)
|
||||
board=${OPTARG}
|
||||
;;
|
||||
m)
|
||||
modifygbe=true
|
||||
new_mac=${OPTARG}
|
||||
|
||||
Reference in New Issue
Block a user