Merge "Fix bash autocompletion of "rally task sla_check""

This commit is contained in:
Jenkins 2015-03-09 22:56:48 +00:00 committed by Gerrit Code Review
commit 84c4f9c2dc

View File

@ -50,8 +50,9 @@ _rally()
for OPT in ${!OPTS[*]} ; do
CMDSUB=(${OPT//_/ })
SUBCOMMANDS[${CMDSUB[0]}]+="${CMDSUB[1]} "
CMD=${OPT%%_*}
CMDSUB=${OPT#*_}
SUBCOMMANDS[${CMD}]+="${CMDSUB} "
done
COMMANDS="${!SUBCOMMANDS[*]}"