Explorar el Código

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

SVN-Revision: 28604
Jo-Philipp Wich hace 14 años
padre
commit
ad6c4198a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      scripts/getver.sh

+ 1 - 1
scripts/getver.sh

@@ -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" ]
 }