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 while getopts r:b:m: option
do do
case "${option}" case "${option}" in
in r)
r)rom=${OPTARG};; rom=${OPTARG}
b)board=${OPTARG};; ;;
b)
board=${OPTARG}
;;
m) m)
modifygbe=true modifygbe=true
new_mac=${OPTARG} new_mac=${OPTARG}