mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
git-srv-admin.sh: Exclude inaccessible directories maintainers list
git-srv-admin.sh: Exclude directories without read permission from maintainers list Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
351188dcf9
commit
3187f3daf5
1 changed files with 2 additions and 0 deletions
|
|
@ -110,6 +110,8 @@ list_maintainers()
|
|||
|
||||
for d in $master_dir; do
|
||||
for pdir in `find $d -maxdepth 1 -mindepth 1 -type d`; do
|
||||
[ -x $pdir ] || continue
|
||||
[ -r $pdir ] || continue
|
||||
#echo "$d -> $pdir"
|
||||
p=`basename $pdir`
|
||||
val=`git -C $pdir show HEAD:make/project.conf 2>/dev/null |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue