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

Commit 7546d613 authored by Kenny Root's avatar Kenny Root
Browse files

Avoid complaining about empty directories

Change-Id: If46bffd1c4e6b94f2e476b2d7d506ef337bbf8e1
parent b8a1c89b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,7 +197,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