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

Commit 3146eb76 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am 1708a6f7: am 4880b436: am 62a2b188: Merge "Avoid complaining about empty directories"

* commit '1708a6f7':
  Avoid complaining about empty directories
parents 1b61d1ba 1708a6f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -207,7 +207,7 @@ function addcompletions()

    dir="sdk/bash_completion"
    if [ -d ${dir} ]; then
        for f in ${dir}/[a-z]*.bash; do
        for f in `/bin/ls ${dir}/[a-z]*.bash 2> /dev/null`; do
            echo "including $f"
            . $f
        done