summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorlolilolicon <lolilolicon@gmail.com>2011-09-28 21:05:03 +0200
committerDan McGee <dan@archlinux.org>2011-09-28 21:09:01 +0200
commit775b94e64903057a75071491670013975fc3ecb2 (patch)
tree2007af54b3bd285cba2098f7b08d180bc65ba003 /scripts
parent497501d1c751b340a115657084402bb3899396c4 (diff)
downloadpacman-775b94e64903057a75071491670013975fc3ecb2.tar.gz
pacman-775b94e64903057a75071491670013975fc3ecb2.tar.xz
pkgdelta: 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>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/pkgdelta.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in
index a0e3ceec..ef34c5bd 100644
--- a/scripts/pkgdelta.sh.in
+++ b/scripts/pkgdelta.sh.in
@@ -93,17 +93,17 @@ create_xdelta()
newver="$pkgver"
newarch="$arch"
- if [[ $oldname != $newname ]]; then
+ if [[ $oldname != "$newname" ]]; then
error "$(gettext "The package names don't match : '%s' and '%s'")" "$oldname" "$newname"
return 1
fi
- if [[ $oldarch != $newarch ]]; then
+ if [[ $oldarch != "$newarch" ]]; then
error "$(gettext "The package architectures don't match : '%s' and '%s'")" "$oldarch" "$newarch"
return 1
fi
- if [[ $oldver == $newver ]]; then
+ if [[ $oldver == "$newver" ]]; then
error "$(gettext "Both packages have the same version : '%s'")" "$newver"
return 1
fi