mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
.gitcheck: reduce indentation level for loop
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -22,16 +22,17 @@ set_placeholders()
|
||||
set_git_credentials
|
||||
|
||||
# Check coreboot as well to prevent errors during building
|
||||
if [ -d coreboot ]; then
|
||||
for x in coreboot/*; do
|
||||
if [ ! -d "${x}" ]; then
|
||||
continue
|
||||
fi
|
||||
cd "${x}"
|
||||
set_git_credentials
|
||||
cd -
|
||||
done
|
||||
if [ ! -d coreboot ]; then
|
||||
return
|
||||
fi
|
||||
for x in coreboot/*; do
|
||||
if [ ! -d "${x}" ]; then
|
||||
continue
|
||||
fi
|
||||
cd "${x}"
|
||||
set_git_credentials
|
||||
cd -
|
||||
done
|
||||
}
|
||||
|
||||
set_git_credentials()
|
||||
|
||||
Reference in New Issue
Block a user