diff options
| author | Greg Kaiser <gkaiser@google.com> | 2023-10-25 16:17:40 +0000 |
|---|---|---|
| committer | Greg Kaiser <gkaiser@google.com> | 2023-10-25 16:18:45 +0000 |
| commit | a13cd28e4482576e5ac77c61f1ba6c5befa974f4 (patch) | |
| tree | f3b91e8013c24e9f01fa161f58daa67fa91927fa /envsetup.sh | |
| parent | c87fd674a85b15446aa1ef8e6f68116d52bb2409 (diff) | |
Have default 'lunch' target use a release type
In git_main, the correct target here is aosp_arm-trunk_staging-eng
(or "trunk_food" or "next", but we choose the most generic
"trunk_staging").
Bug: 307738446
Test: "lunch", hit return for the default, "echo $TARGET_RELEASE" to confirm
Change-Id: I4d4bcaf27553976e64133c7351db296953f88b08
Diffstat (limited to 'envsetup.sh')
| -rw-r--r-- | envsetup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/envsetup.sh b/envsetup.sh index e448bd3cc8..2ea55078b8 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -774,7 +774,7 @@ function lunch() answer=$1 else print_lunch_menu - echo "Which would you like? [aosp_arm-eng]" + echo "Which would you like? [aosp_arm-trunk_staging-eng]" echo -n "Pick from common choices above (e.g. 13) or specify your own (e.g. aosp_barbet-eng): " read answer used_lunch_menu=1 @@ -784,7 +784,7 @@ function lunch() if [ -z "$answer" ] then - selection=aosp_arm-eng + selection=aosp_arm-trunk_staging-eng elif (echo -n $answer | grep -q -e "^[0-9][0-9]*$") then local choices=($(TARGET_BUILD_APPS= get_build_var COMMON_LUNCH_CHOICES)) |
