diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-12-06 22:29:33 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-07 10:02:11 -0600 |
commit | 0e4946d5593e5968c1d6bca50402eaf7a8620526 (patch) | |
tree | 1d4b0f6bfd63e33df10a98d3a98bd8d2f7700ad2 /scripts/pkgdelta.sh.in | |
parent | a3a75e0a41680283572895165da3fe2505314dec (diff) | |
download | pacman-0e4946d5593e5968c1d6bca50402eaf7a8620526.tar.xz |
scripts/*: Declare several constant variables read-only
Be more semantically accurate and avoid accidental overwriting of some
configuration variables that are considered to be constant.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts/pkgdelta.sh.in')
-rw-r--r-- | scripts/pkgdelta.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index ef34c5bd..22a3cd23 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pkgdelta.sh.in @@ -26,7 +26,7 @@ set -o errexit export TEXTDOMAIN='pacman-scripts' export TEXTDOMAINDIR='@localedir@' -myver='@PACKAGE_VERSION@' +declare -r myver='@PACKAGE_VERSION@' QUIET=0 |