diff options
-rwxr-xr-x | archiso/mkarchiso | 4 | ||||
-rwxr-xr-x | configs/releng/build.sh | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index a183d34..0aca521 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -328,7 +328,9 @@ command_prepare () { _mkairootfs_img fi _mkchecksum - [[ ${gpg_key} ]] && _mksignature + if [[ ${gpg_key} ]]; then + _mksignature + fi } # Install packages on airootfs. diff --git a/configs/releng/build.sh b/configs/releng/build.sh index ad2f994..4173eea 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -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="" |