11 lines
342 B
Bash
Raw Normal View History

2016-04-11 07:29:41 +01:00
#!/bin/bash -e
2023-09-07 12:50:34 +01:00
if [ "$RELEASE" != "bookworm" ]; then
echo "WARNING: RELEASE does not match the intended option for this branch."
echo " Please check the relevant README.md section."
fi
2021-02-10 11:37:15 +01:00
if [ ! -d "${ROOTFS_DIR}" ] || [ "${USE_QCOW2}" = "1" ]; then
2023-09-08 11:39:51 +01:00
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://raspbian.raspberrypi.com/raspbian/
2016-04-11 07:29:41 +01:00
fi