archboot/usr/bin/archboot-x86_64-release.sh
Tobias Powalowski 5fceadd5bf rename functions
2023-01-08 22:03:15 +01:00

13 lines
341 B
Bash
Executable file

#!/bin/bash
# created by Tobias Powalowski <tpowa@archlinux.org>
. /usr/lib/archboot/common.sh
. /usr/lib/archboot/release.sh
[[ -z "${1}" ]] && _usage
_root_check
_container_check
echo "Start release creation in ${1} ..."
_create_iso "$@" || exit 1
_create_boot || exit 1
_create_cksum || exit 1
echo "Finished release creation in ${1} ."