diff options
author | Tim Schumacher <timschumi2@arcor.de> | 2017-04-17 09:47:26 +0200 |
---|---|---|
committer | Tim Schumacher <timschumi2@arcor.de> | 2017-04-17 09:47:26 +0200 |
commit | 116515991c4eb230a6134559f82afa9859a59e8f (patch) | |
tree | 227f629efb43698a73507abda6ef4b5583a53456 | |
parent | 4a53e9a7d0c8b06b032b71bd63cd3d5995a09fde (diff) | |
download | vendor_replicant-116515991c4eb230a6134559f82afa9859a59e8f.zip vendor_replicant-116515991c4eb230a6134559f82afa9859a59e8f.tar.gz vendor_replicant-116515991c4eb230a6134559f82afa9859a59e8f.tar.bz2 |
Fix lunch names in vendorsetup.sh
Change-Id: Ic2daf7ae920126fa6af420225bf9eac101c534e3
-rw-r--r-- | vendorsetup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendorsetup.sh b/vendorsetup.sh index b520579..41f28c2 100644 --- a/vendorsetup.sh +++ b/vendorsetup.sh @@ -1,4 +1,4 @@ -for combo in $(curl -s https://raw.githubusercontent.com/LineageOS/hudson/master/lineage-build-targets | sed -e 's/#.*$//' | grep cm-13.0 | awk '{printf "cm_%s-%s\n", $1, $2}') +for combo in $(curl -s https://raw.githubusercontent.com/LineageOS/hudson/master/lineage-build-targets | sed -e 's/#.*$//' | grep cm-13.0 | awk '{printf "lineage_%s-%s\n", $1, $2}') do add_lunch_combo $combo done |