mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-16 13:16:47 +02:00
.gitcheck: *actually* check coreboot directories
This commit is contained in:
@@ -17,9 +17,14 @@ main()
|
|||||||
|
|
||||||
# Check coreboot as well to prevent errors during building
|
# Check coreboot as well to prevent errors during building
|
||||||
if [ -d coreboot ]; then
|
if [ -d coreboot ]; then
|
||||||
cd coreboot
|
for x in coreboot/*; do
|
||||||
set_placeholder
|
if [ ! -d "${x}" ]; then
|
||||||
cd -
|
continue
|
||||||
|
fi
|
||||||
|
cd "${x}"
|
||||||
|
set_placeholder
|
||||||
|
cd -
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user