archboot/usr/bin/archboot-x86_64-release.sh
2022-02-08 20:41:57 +01:00

15 lines
385 B
Bash
Executable file

#!/usr/bin/env bash
# created by Tobias Powalowski <tpowa@archlinux.org>
source /usr/lib/archboot/functions
source /usr/lib/archboot/release_functions
export _ARCHBOOT="archboot"
[[ -z "${1}" ]] && _usage
_root_check
_x86_64_check
echo "Start release creation in $1 ..."
_create_iso
_create_boot
_create_torrent
_create_cksum
echo "Finished release creation in ${1} ."
unset _ARCHBOOT