summaryrefslogtreecommitdiff
path: root/gitclone
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-07-29 07:24:18 +0100
committerLeah Rowe <leah@libreboot.org>2023-07-29 07:24:18 +0100
commit8f1d3ad19f8f63bd9d9a4b0f7c0a42c7ce7fae8b (patch)
treeb95f2c14089d909194f97844a0322ccfda2e39b5 /gitclone
parent748e0972287bcb300bf11ef86d3ccb45bce59146 (diff)
scripts: fix indentation in switch/case blocks
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'gitclone')
-rwxr-xr-xgitclone8
1 files changed, 4 insertions, 4 deletions
diff --git a/gitclone b/gitclone
index 70b4e7f7..bd49a04a 100755
--- a/gitclone
+++ b/gitclone
@@ -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