aboutsummaryrefslogtreecommitdiff
path: root/pull.sh
blob: d20c704e958e31d01557c68f09957ef676647f18 (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 "pull $i" 1>&2
  cd $i
  git pull $*

  if [ $? -ne 0 ]; then
    echo "pull FAILED" 1>&2
    exit 1
  fi

  cd $wd
done