Test repository directory names no longer need to end in *.git.

This commit is contained in:
Robin Sommer 2011-07-09 08:43:51 -07:00
parent eb0580c622
commit 42f214b8d0
4 changed files with 30 additions and 14 deletions

8
testing/external/scripts/find-git-repos vendored Executable file
View file

@ -0,0 +1,8 @@
#! /usr/bin/env bash
#
# Returns a list of git repositories found in subdirs of the
# current directory.
for i in `find . -type d`; do
test -e $i/.git && echo $i
done