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

16 lines
397 B
Bash
Raw Normal View History

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