Skip to content
Snippets Groups Projects
Commit ad6c4198 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

getver.sh: cope with varying "git log" line formats to reliably extract the git-svn rev (#10268)

SVN-Revision: 28604
parent f15f6bc7
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ try_svn() {
try_git() {
[ -d .git ] || return 1
REV="$(git log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $2); print $2 }')"
REV="$(git log | grep -m 1 git-svn-id | awk '{ gsub(/.*@/, "", $0); print $1 }')"
REV="${REV:+r$REV}"
[ -n "$REV" ]
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment