diff options
author | Roman Birg <romanbirg@gmail.com> | 2018-03-28 09:47:30 -0700 |
---|---|---|
committer | Sam Mortimer <sam@mortimer.me.uk> | 2019-12-19 20:45:26 +0100 |
commit | d51094ce3b5b69b9426c88bb5a3fad959dcb2efa (patch) | |
tree | 12b9c5230b5827b287ae38b5050c256b0031d120 | |
parent | c386595e0cb0188a9c427c8c8aedab434df5a032 (diff) | |
download | external_wget-lineage-17.0.tar.gz external_wget-lineage-17.0.tar.bz2 external_wget-lineage-17.0.zip |
vendor: make dopush recognize files on more partitionslineage-17.0
Change-Id: Ied1a243730df1d683fd237f8ea7bd9b1742db105
Signed-off-by: Roman Birg <romanbirg@gmail.com>
-rw-r--r-- | build/envsetup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/envsetup.sh b/build/envsetup.sh index c22b9d6d..1cad41a7 100644 --- a/build/envsetup.sh +++ b/build/envsetup.sh @@ -887,9 +887,9 @@ EOF stop_n_start=false for TARGET in $(echo $LOC | tr " " "\n" | sed "s#.*${RELOUT}##" | sort | uniq); do - # Make sure file is in $OUT/system or $OUT/data + # Make sure file is in $OUT/system, $OUT/data, $OUT/odm, $OUT/oem, $OUT/product, $OUT/product_services or $OUT/vendor case $TARGET in - /system/*|/data/*) + /system/*|/data/*|/odm/*|/oem/*|/product/*|/product_services/*|/vendor/*) # Get out file from target (i.e. /system/bin/adb) FILE=$OUT$TARGET ;; |