summaryrefslogtreecommitdiffstats
path: root/envsetup.sh
diff options
context:
space:
mode:
authorMike Dodd <mdodd@google.com>2011-04-07 13:29:06 -0700
committerMike Dodd <mdodd@google.com>2011-04-07 13:29:29 -0700
commit0c26d3426988d55e0a9471fab3a3fd9d922dd2b5 (patch)
tree208a80f5bd8d49c87350f45fffdd8497693edec3 /envsetup.sh
parentc9ef69c32c2522a75529157e2889bf19f7a8b23c (diff)
downloadbuild-0c26d3426988d55e0a9471fab3a3fd9d922dd2b5.zip
build-0c26d3426988d55e0a9471fab3a3fd9d922dd2b5.tar.gz
build-0c26d3426988d55e0a9471fab3a3fd9d922dd2b5.tar.bz2
Fix typo that broke cgrep.
Change-Id: Ic87f4bff1ee52a201c197c5664ff2e91648b0b53
Diffstat (limited to 'envsetup.sh')
-rw-r--r--envsetup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/envsetup.sh b/envsetup.sh
index 1443760..ebde85c 100644
--- a/envsetup.sh
+++ b/envsetup.sh
@@ -831,7 +831,7 @@ function jgrep()
function cgrep()
{
- find .a -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
+ find . -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
}
function resgrep()