scripts: fix indentation in switch/case blocks

Signed-off-by: Leah Rowe <leah@libreboot.org>
btrfsvols
Leah Rowe 2023-07-29 07:24:18 +01:00
parent 748e097228
commit 8f1d3ad19f
3 changed files with 20 additions and 17 deletions

View File

@ -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}