scripts/git-version.sh: fix mistaken comments
[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 FAILURE=
8
9 for m in \
10   gstreamer gst-plugins-base \
11   gst-plugins-good gst-plugins-ugly gst-plugins-bad \
12   gst-ffmpeg \
13   gst-python \
14   gnonlin \
15   ; do
16   if test -d $m; then
17     cd $m
18       echo $m
19       git branch | grep '*'
20       git log | head -n 1
21     cd ..
22   fi
23 done