scripts: fix indentation in switch/case blocks

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-07-29 07:24:18 +01:00
parent 748e097228
commit 8f1d3ad19f
3 changed files with 20 additions and 17 deletions
+4 -4
View File
@@ -35,16 +35,16 @@ read_config()
while read -r line ; do
set ${line} >/dev/null 2>&1
case ${line} in
rev:*)
rev:*)
revision=${2}
;;
loc:*)
loc:*)
location=${2}
;;
url:*)
url:*)
url=${2}
;;
bkup_url:*)
bkup_url:*)
bkup_url=${2}
;;
esac