scripts/git-version.sh: remove unused variable
[platform/upstream/gstreamer.git] / scripts / git-version.sh
1 #!/bin/bash
2
3 # display the latest commit in each branch of all gstreamer modules.
4 # run this from a directory that contains the checkouts for each of the
5 # modules
6
7 for m in \
8   gstreamer gst-plugins-base \
9   gst-plugins-good gst-plugins-ugly gst-plugins-bad \
10   gst-ffmpeg \
11   gst-python \
12   gnonlin \
13   ; do
14   if test -d $m; then
15     cd $m
16       echo $m
17       git branch | grep '*'
18       git log | head -n 1
19     cd ..
20   fi
21 done