mirror of
https://github.com/git/git.git
synced 2025-04-09 02:29:28 +00:00
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 <julian@quantumfyre.co.uk> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
6eb420ef61
commit
91464dfb10
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user