Fix minor glitch introduced by string concatenation
parent
bb1452bb84
commit
f5268d91ff
|
|
@ -195,9 +195,10 @@ for param in "$@"; do
|
|||
|
||||
for type in "aliases" "plugins" "completion"; do
|
||||
while true; do
|
||||
read -p "Would you like to enable all, some, or no ${type}?" \
|
||||
"Some of these may make bash slower to start up" \
|
||||
"(especially completion). (all/some/none)" RESP
|
||||
prompt=("Enable ${type}: Would you like to enable all, some, or" \
|
||||
"no ${type}? Some of these may make bash slower to start up" \
|
||||
"(especially completion).")
|
||||
read -p "${prompt[*]} [all/some/none] " RESP
|
||||
case ${RESP} in
|
||||
some)
|
||||
load_some "${type}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue