diff options
author | lolilolicon <lolilolicon@gmail.com> | 2011-09-29 04:45:22 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-30 17:48:49 +0200 |
commit | 6bb594802588240405efee0813f7aa1daa9648b3 (patch) | |
tree | 6800600f7584c4faf0ee87624531fc5643466984 /contrib/paccache.in | |
parent | e0400fff96497d915e67d190052820d53443d98f (diff) | |
download | pacman-6bb594802588240405efee0813f7aa1daa9648b3.tar.gz pacman-6bb594802588240405efee0813f7aa1daa9648b3.tar.xz |
paccache: proper quoting in [[ expression ]]
Always quote the right-hand side of expression when the == or != operator
is used, unless intended as a pattern.
Signed-off-by: lolilolicon <lolilolicon@gmail.com>
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'contrib/paccache.in')
-rwxr-xr-x | contrib/paccache.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/paccache.in b/contrib/paccache.in index e5cac7de..4e185c27 100755 --- a/contrib/paccache.in +++ b/contrib/paccache.in @@ -153,7 +153,7 @@ summarize() { while read -r pkg; do if (( verbose >= 3 )); then [[ $pkg =~ $pkg_re ]] && name=${BASH_REMATCH[1]} arch=${BASH_REMATCH[2]} - if [[ -z $seen || $seenarch != $arch || $seen != $name ]]; then + if [[ -z $seen || $seenarch != "$arch" || $seen != "$name" ]]; then printf '%s (%s):\n' "$name" "$arch" fi printf ' %s\n' "$pkg" |