mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
Test repository directory names no longer need to end in *.git.
This commit is contained in:
parent
eb0580c622
commit
42f214b8d0
4 changed files with 30 additions and 14 deletions
8
testing/external/scripts/find-git-repos
vendored
Executable file
8
testing/external/scripts/find-git-repos
vendored
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue