diff options
author | cybojenix <anthonydking@gmail.com> | 2013-06-28 20:30:00 +0100 |
---|---|---|
committer | cybojenix <anthonydking@gmail.com> | 2013-06-28 20:44:08 +0100 |
commit | 448f5c8b36cfeaf1e9f26464145fff50dbeaca7e (patch) | |
tree | 9f92c1af7d877674705f50106718102444e92898 | |
parent | 767350772b93c8dad1a438b67ef04ebab9b7cafe (diff) | |
download | build-448f5c8b36cfeaf1e9f26464145fff50dbeaca7e.zip build-448f5c8b36cfeaf1e9f26464145fff50dbeaca7e.tar.gz build-448f5c8b36cfeaf1e9f26464145fff50dbeaca7e.tar.bz2 |
lets make the lunch list look a little neater
It's very simple, but with more and more devices coming in, a long list won't cut it
There are probably better ways of doing this, feel free to comment
Change-Id: I9bd1fef920f985a133c882df9987b6be29dbc7b8
-rw-r--r-- | envsetup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/envsetup.sh b/envsetup.sh index 07c481d..602a301 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -481,9 +481,9 @@ function print_lunch_menu() local choice for choice in ${LUNCH_MENU_CHOICES[@]} do - echo " $i. $choice" + echo " $i. $choice " i=$(($i+1)) - done + done | column if [ "z${CM_DEVICES_ONLY}" != "z" ]; then echo "... and don't forget the bacon!" |