.gitcheck: *actually* check coreboot directories

This commit is contained in:
Leah Rowe
2023-05-18 09:38:20 +01:00
parent 52bc07bc84
commit 829bc02bf2

View File

@@ -17,9 +17,14 @@ main()
# Check coreboot as well to prevent errors during building
if [ -d coreboot ]; then
cd coreboot
set_placeholder
cd -
for x in coreboot/*; do
if [ ! -d "${x}" ]; then
continue
fi
cd "${x}"
set_placeholder
cd -
done
fi
fi
}