blob: 8a73bd4bc9d30ce0a4d8f232cd074675d8b451d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
. etc/git/modules
wd=`pwd`
for i in $modules; do
echo "stat $i" 1>&2
cd $i
git status
if [ $? -ne 0 ]; then
echo "stat FAILED" 1>&2
exit 1
fi
cd $wd
done
|