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

Unverified Commit 660b4843 authored by Chirayu Desai's avatar Chirayu Desai Committed by Michael Bestas
Browse files

envsetup: include bash completion script from vendor/cm

Change-Id: Id90d84748df41d6626dfd46befabe0054c6d14e7
parent 7f3e4d55
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -345,13 +345,15 @@ function addcompletions()
        return
    fi

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

function choosetype()