From 63399225b514fdbd84b1b5562f854c44209ccc11 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Tue, 1 Mar 2016 21:47:25 -0300 Subject: Fix non-signed builds FS#48382 --- archiso/mkarchiso | 4 +++- configs/releng/build.sh | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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="" -- cgit v1.2.3-54-g00ecf