diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 02:30:24 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 02:30:24 -0400 |
commit | 70a7595cc07f38d4a83dff1d4697eb49c2e65b2c (patch) | |
tree | 3017fa8faa47e92c5615c8c6c448be8a30114134 | |
parent | c67298902ca36579b4cc43c1868cdb41279ef21b (diff) | |
download | git-70a7595cc07f38d4a83dff1d4697eb49c2e65b2c.tar.gz |
git-gui: Treat `git version` as `git --version`
We know that the version subcommand of git is special. It does not
currently have an executable link installed into $gitexecdir and we
therefore would never match it with one of our file exists tests.
So we forward any invocations to it directly to the git wrapper, as
it is a builtin within that executable.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | git-gui.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh index 9b342f0846..a3ac5daf14 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -294,6 +294,7 @@ proc _git_cmd {name} { if {[catch {set v $_git_cmd_path($name)}]} { switch -- $name { + version - --version - --exec-path { return [list $::_git $name] } } |