Added --batch parameter
Added --batch parameter to gpg2 to remove the prompt and pass the gpgPass variable
This commit is contained in:
parent
ca98fb28cd
commit
04d8bb1dbe
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ fi
|
|||
set -x
|
||||
|
||||
if [[ $optSignature == "Y" ]] ; then
|
||||
for i in $(find . -name "*.AppImage*" -print;); do gpg2 -b --armor --passphrase "$gpgPass" "${i}"; done || true
|
||||
for i in $(find . -name "*.AppImage*" -print;); do gpg2 -b --batch --armor --passphrase "$gpgPass" "${i}"; done || true
|
||||
fi
|
||||
|
||||
mkdir -p ../out/ || true
|
||||
|
|
Loading…
Reference in a new issue