aur.sh: Fix typo in dependency exclusion check

master
Taeyeon Mori 7 years ago
parent 41f69096ef
commit 76423ca6e2
  1. 2
      bin/aur.sh

@ -495,7 +495,7 @@ done
if (( ${#exclude} )); then
all_affected_pkgs="${AFFECTED_PKGS[*]}"
AFFECTED_PKGS=(${AFFECTED_PKGS:|exclude})
if ! ( "$all_affected_pkgs" = "${AFFECTED_PKGS[*]}" ); then
if ! [[ "$all_affected_pkgs" == "${AFFECTED_PKGS[*]}" ]]; then
warn "[AUR] Some dependencies have been excluded!"
fi
fi

Loading…
Cancel
Save