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

Commit 55c838f1 authored by Ying Wang's avatar Ying Wang Committed by Android Git Automerger
Browse files

am 0b584f2b: am f994458b: am b4b996a8: Merge "Include vendorsetup scripts in order"

* commit '0b584f2b':
  Include vendorsetup scripts in order
parents 11e923a0 0b584f2b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1492,8 +1492,8 @@ if [ "x$SHELL" != "x/bin/bash" ]; then
fi

# Execute the contents of any vendorsetup.sh files we can find.
for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null` \
         `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null`
for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
         `test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort`
do
    echo "including $f"
    . $f