summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Staniewski <cedric@gmx.ca>2009-10-24 17:05:41 +0200
committerDan McGee <dan@archlinux.org>2009-10-24 17:05:41 +0200
commit21caf8730f9d089e351bf73b8bfd46b316c518a9 (patch)
tree9152b61f4a724379999a15bc9b97d616299acb7e
parent5ffc1ad3cdb1ec252739c62c9d614aba468bb22c (diff)
downloadpacman-21caf8730f9d089e351bf73b8bfd46b316c518a9.tar.gz
pacman-21caf8730f9d089e351bf73b8bfd46b316c518a9.tar.xz
makepkg: change preselected option for cleaning the cache from Y to N
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in2
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