Fix non-signed builds

FS#48382
This commit is contained in:
Gerardo Exequiel Pozzi 2016-03-01 21:47:25 -03:00
parent 80b159345f
commit 63399225b5
2 changed files with 4 additions and 1 deletions

View File

@ -328,7 +328,9 @@ command_prepare () {
_mkairootfs_img
fi
_mkchecksum
[[ ${gpg_key} ]] && _mksignature
if [[ ${gpg_key} ]]; then
_mksignature
fi
}
# Install packages on airootfs.

View File

@ -8,6 +8,7 @@ iso_version=$(date +%Y.%m.%d)
install_dir=arch
work_dir=work
out_dir=out
gpg_key=
arch=$(uname -m)
verbose=""