diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-26 12:37:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-10-26 13:27:17 +0000 |
commit | a424dd73af5db1b09e912759ec8fd09b5c194a5f (patch) | |
tree | 4ec9659711d626f33bd40c94e0fa3c34b762aa46 /setup-apkcache.in | |
parent | a28728bc868ded45ec916adb5c26f81375c01acc (diff) | |
download | alpine-conf-a424dd73af5db1b09e912759ec8fd09b5c194a5f.zip |
setup-apkcache: fix prompt
we encapsulate 'none' within '' everywhere else
Diffstat (limited to 'setup-apkcache.in')
-rw-r--r-- | setup-apkcache.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-apkcache.in b/setup-apkcache.in index ba40488..6c956e8 100644 --- a/setup-apkcache.in +++ b/setup-apkcache.in @@ -104,7 +104,7 @@ fi cachedir=$1 while [ -z "$cachedir" ]; do - echo -n "Where would you like to store apk cache? (or none) [$suggestion] " + echo -n "Where would you like to store apk cache? (or 'none') [$suggestion] " default_read cachedir $suggestion done |