mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
Check if a git-svn revision number is available to try to get better version
information from git. Originally committed as revision 20015 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
98422c44cf
commit
d38b7b80d1
@ -10,6 +10,12 @@ q
|
||||
}' .svn/entries 2>/dev/null)
|
||||
test $revision && revision=SVN-r$revision
|
||||
|
||||
# check for git svn revision number
|
||||
if ! test $revision; then
|
||||
revision=$(cd "$1" && git svn find-rev HEAD)
|
||||
test $revision && revision=git-svn-r$revision
|
||||
fi
|
||||
|
||||
# check for git short hash
|
||||
if ! test $revision; then
|
||||
revision=$(cd "$1" && git log -1 --pretty=format:%h)
|
||||
|
Loading…
Reference in New Issue
Block a user