11 lines
314 B
Bash
Raw Permalink 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
2024-02-22 23:19:10 -05:00
if [ ! -d "${ROOTFS_DIR}" ]; 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