diff options
| author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-16 18:44:23 -0400 |
|---|---|---|
| committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-16 18:44:23 -0400 |
| commit | ec4fceece4a9f155afcadec254caff5cef781c67 (patch) | |
| tree | 3d9b758c8bd72915b82c5adaaa3677730893401c | |
| parent | git-gui: Skip -dirty suffix on core git versions (diff) | |
| download | git-ec4fceece4a9f155afcadec254caff5cef781c67.tar.gz git-ec4fceece4a9f155afcadec254caff5cef781c67.zip | |
git-gui: Brown paper bag "dirty git version fix"
My prior change to allow git-gui to run with a version of Git
that was built from a working directory that had uncommitted
changes didn't account for the pattern starting with -, and
that confused Tcl.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
| -rwxr-xr-x | git-gui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui.sh b/git-gui.sh index bdb557184e..38084515cb 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -544,7 +544,7 @@ if {![regsub {^git version } $_git_version {} _git_version]} { error_popup "Cannot parse Git version string:\n\n$_git_version" exit 1 } -regsub {-dirty$} $_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 |
