You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iso/build_iso.sh

15 lines
468 B
Bash

3 years ago
rm -fv crystal-live-*.iso
WORKDIR=$(mktemp -d)
# idk if this would've happened automatically?
3 years ago
cp crystal/pacman.conf crystal/airootfs/etc/.
cp crystal/packages.x86_64 crystal/airootfs/etc/packages.x86_64
cp /etc/pacman.d/mirrorlist crystal/airootfs/etc/pacman.d/.
echo "Built on $(date +"%D @ %T EST")" > crystal/airootfs/etc/buildstamp
3 years ago
time sudo ./mkarchiso -v -w $WORKDIR -o . crystal
sudo rm -rf $WORKDIR
if [[ "$1" == "docker" ]]; then
cp *.iso /output/.
fi