Browse Source

build-package.sh: fix unbound variable error

master
Leonid Plyushch 5 years ago
parent
commit
829478bfe6
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 2
      build-package.sh

2
build-package.sh

@ -268,7 +268,7 @@ shift $((OPTIND-1))
if [ "$#" -lt 1 ]; then _show_usage; fi if [ "$#" -lt 1 ]; then _show_usage; fi
unset -f _show_usage unset -f _show_usage
if [ "$TERMUX_INSTALL_DEPS" = "true" ]; then if [ "${TERMUX_INSTALL_DEPS-false}" = "true" ]; then
# Setup PGP keys for verifying integrity of dependencies. # Setup PGP keys for verifying integrity of dependencies.
# Keys are obtained from our keyring package. # Keys are obtained from our keyring package.
gpg --list-keys 2218893D3F679BEFC421FD976700B77E6D8D0AE7 > /dev/null 2>&1 || { gpg --list-keys 2218893D3F679BEFC421FD976700B77E6D8D0AE7 > /dev/null 2>&1 || {

Loading…
Cancel
Save