11 lines
302 B
Bash
Executable File
11 lines
302 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
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
|
|
|
|
if [ ! -d "${ROOTFS_DIR}" ]; then
|
|
bootstrap ${RELEASE} "${ROOTFS_DIR}" http://deb.debian.org/debian/
|
|
fi
|