diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2016-03-01 21:47:25 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2016-03-01 21:47:44 -0300 |
commit | 63399225b514fdbd84b1b5562f854c44209ccc11 (patch) | |
tree | df8e58cb824f5e714f1e5e051958a2252112a788 /archiso | |
parent | 80b159345f1892383e48204da61b62aa36dc9455 (diff) | |
download | archiso32-63399225b514fdbd84b1b5562f854c44209ccc11.tar.xz |
Fix non-signed builds
FS#48382
Diffstat (limited to 'archiso')
-rwxr-xr-x | archiso/mkarchiso | 4 |
1 files changed, 3 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. |