Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d51094ce authored by Roman Birg's avatar Roman Birg Committed by Sam Mortimer
Browse files

vendor: make dopush recognize files on more partitions



Change-Id: Ied1a243730df1d683fd237f8ea7bd9b1742db105
Signed-off-by: default avatarRoman Birg <romanbirg@gmail.com>
parent c386595e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
            ;;