diff options
author | Andres P <aepd87@gmail.com> | 2010-06-25 18:46:45 -0430 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-30 08:27:29 -0500 |
commit | 8b23aa172f6229dd82c381704d4802d9747e118b (patch) | |
tree | abb7bcba68753dce4d1a7926a7c945d8d40cf508 /scripts | |
parent | d7c98d4e45f614495399636bf02bc718e4a90ab8 (diff) |
makepkg: remove bash4-only parameter expansion in check_sanity
Signed-off-by: Andres P <aepd87@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index c4c9866c..6ad83f0b 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1250,7 +1250,7 @@ check_sanity() { # evaluate any bash variables used eval file=${file} if [[ ! -f $file ]]; then - error "$(gettext "%s file (%s) does not exist.")" "${i^}" "$file" + error "$(gettext "%s file (%s) does not exist.")" "$i" "$file" return 1 fi done |