summaryrefslogtreecommitdiff
path: root/git/diff.sh
blob: bd4639e97ec5f21912a7548fcdb188b12cf3e73e (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
26
27
28
29
#! /bin/sh

# Assume this script never run via PATH.
#
self=`realpath $0`
. `dirname $self`/modules

wd=`pwd`

for i in $modules; do
  echo "diff $i" 1>&2
  cd $i

  git --no-pager diff

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

  git --no-pager diff --check

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

  cd $wd
done