Merge "Fix lunch choices w/zsh"

am: b836b175c5

Change-Id: I0db5d9d5f44ed39beb378d6bc819ec76059f6630
This commit is contained in:
Dan Willemsen 2019-10-03 18:11:39 -07:00 committed by android-build-merger
commit e8d3948ec5
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ function print_lunch_menu()
local i=1
local choice
for choice in $choices
for choice in $(echo $choices)
do
echo " $i. $choice"
i=$(($i+1))