From: Julian Phillips Date: Tue, 17 Jul 2007 21:14:06 +0000 (+0100) Subject: git-gui: Handle git versions of the form n.n.n.GIT X-Git-Tag: gitgui-0.8.0~46 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=91464dfb102d6143182d8f312b68486e9dceb103;p=git-core%2Fgit.git git-gui: Handle git versions of the form n.n.n.GIT The git-gui version check doesn't handle versions of the form n.n.n.GIT which you can get by installing from an tarball produced by git-archive. Without this change you get an error of the form: 'Error in startup script: expected version number but got "1.5.3.GIT"' Signed-off-by: Julian Phillips Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index d0b75c044..ebc270866 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -548,6 +548,7 @@ if {![regsub {^git version } $_git_version {} _git_version]} { regsub -- {-dirty$} $_git_version {} _git_version regsub {\.[0-9]+\.g[0-9a-f]+$} $_git_version {} _git_version regsub {\.rc[0-9]+$} $_git_version {} _git_version +regsub {\.GIT$} $_git_version {} _git_version proc git-version {args} { global _git_version