archboot/usr/bin/archboot-x86_64-release.sh

17 lines
364 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# created by Tobias Powalowski <tpowa@archlinux.org>
source /usr/lib/archboot/functions
source /usr/lib/archboot/release_functions
_ARCHBOOT="archboot"
[[ -z "${1}" ]] && _usage
2021-09-23 09:14:28 +02:00
_root_check
_x86_64_check
2021-10-15 09:16:30 +02:00
echo "Start release creation in $1 ..."
_create_iso
_create_boot
_create_torrent
_create_cksum
2022-01-24 09:56:00 +01:00
echo "Finished release creation in ${1} ."