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

Commit 1708a6f7 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

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

* commit '4880b436':
  Avoid complaining about empty directories
parents db549686 4880b436
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -200,7 +200,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