[tools/grep-all.sh] Get branches from git

Rather than hard code the branches to look at just do all the stable
branches that exist.

Change-Id: I8beb6ed5e537f37e707d1e04ad9c1174fd608544
This commit is contained in:
Tony Breeds 2017-09-28 12:42:27 +10:00
parent d827e71b22
commit bf3ce4dc03
1 changed files with 2 additions and 6 deletions

View File

@ -14,12 +14,8 @@
# Note(tonyb): Expand HEAD into something that's hopefully more human
# readable
declare -a branches=(
$(git describe --always) origin/master
origin/stable/pike
origin/stable/ocata
origin/stable/newton
)
declare -a branches=($(git describe --always) origin/master)
branches+=($(git branch --no-color -r --list 'origin/stable/*'))
function search {
git grep -hEi "^${1}[=><!]" ${2} -- "${3}"