.gitcheck: *actually* check coreboot directories
parent
52bc07bc84
commit
829bc02bf2
|
@ -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
|
||||||
|
if [ ! -d "${x}" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
cd "${x}"
|
||||||
set_placeholder
|
set_placeholder
|
||||||
cd -
|
cd -
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue