diff options
author | Cedric Staniewski <cedric@gmx.ca> | 2009-10-24 10:05:41 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-10-24 10:05:41 -0500 |
commit | 21caf8730f9d089e351bf73b8bfd46b316c518a9 (patch) | |
tree | 9152b61f4a724379999a15bc9b97d616299acb7e /scripts | |
parent | 5ffc1ad3cdb1ec252739c62c9d614aba468bb22c (diff) | |
download | pacman-21caf8730f9d089e351bf73b8bfd46b316c518a9.tar.xz |
makepkg: change preselected option for cleaning the cache from Y to N
Signed-off-by: Dan McGee <dan@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 3662228c..ffa8e866 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1565,7 +1565,7 @@ if [ "$CLEANCACHE" -eq 1 ]; then if [ -n "$SRCDEST" -a "$SRCDEST" != "$startdir" ]; then msg "$(gettext "Cleaning up ALL files from %s.")" "$SRCDEST" echo -n "$(gettext " Are you sure you wish to do this? ")" - echo -n "$(gettext "[Y/n]")" + echo -n "$(gettext "[y/N]")" read answer answer=$(echo $answer | tr '[:lower:]' '[:upper:]') if [ "$answer" = "$(gettext "YES")" -o "$answer" = "$(gettext "Y")" ]; then |