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

Commit 099aa4cf authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am b8a1c89b: Merge "Only include "[a-z]*.bash" files for completion"

* commit 'b8a1c89b':
  Only include "[a-z]*.bash" files for completion
parents 8985d033 b8a1c89b
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]*; do
        for f in ${dir}/[a-z]*.bash; do
            echo "including $f"
            . $f
        done