blob: a725abe00672697eb9e058c5968828ffbff8102f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#! /bin/sh
# Update all submodules to remote HEAD by running:
#
# git submodule update --remote
#
# Normally you would follow this with commit.
#
. etc/git/modules
wd=`pwd`
for i in $modules; do
echo "submodule update $i" 1>&2
cd $i
git submodule update --remote $*
if [ $? -ne 0 ]; then
echo "submodule update FAILED" 1>&2
exit 1
fi
cd $wd
done
|