summaryrefslogtreecommitdiff
path: root/scripts/git-version.sh
blob: e92c4c50e817b014931d82647edabca3acf6d184 (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/bash

# update all known gstreamer modules
# build them one by one
# report failures at the end
# run this from a directory that contains the checkouts for each of the
# modules

FAILURE=

for m in \
  gstreamer gst-plugins-base \
  gst-plugins-good gst-plugins-ugly gst-plugins-bad \
  gst-ffmpeg \
  gst-python \
  gnonlin \
  ; do
  if test -d $m; then
    cd $m
      echo $m
      git branch | grep '*'
      git log | head -n 1
    cd ..
  fi
done