diff options
author | Junio C Hamano <junkio@cox.net> | 2007-05-07 14:46:15 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-07 14:46:15 -0700 |
commit | 53a58245863eff3d70aaa3ac75d7d57e843fc91d (patch) | |
tree | d3de9d4831e747977da38f085421595ac663b86b /git-gui | |
parent | bff898b894815ad291b35d213f1c022d1d16a9b9 (diff) | |
parent | 681bfd59ce1a93a4492e11a480e438099f721294 (diff) | |
download | git-53a58245863eff3d70aaa3ac75d7d57e843fc91d.tar.gz |
Merge branch 'maint' of git://repo.or.cz/git-gui into maint
* 'maint' of git://repo.or.cz/git-gui:
git-gui: Allow spaces in path to 'wish'
Diffstat (limited to 'git-gui')
-rwxr-xr-x | git-gui/git-gui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui/git-gui.sh b/git-gui/git-gui.sh index 7cbc977ea2..ae881336da 100755 --- a/git-gui/git-gui.sh +++ b/git-gui/git-gui.sh @@ -4134,7 +4134,7 @@ proc do_gitk {revs} { # -- Always start gitk through whatever we were loaded with. This # lets us bypass using shell process on Windows systems. # - set cmd [info nameofexecutable] + set cmd [list [info nameofexecutable]] lappend cmd [gitexec gitk] if {$revs ne {}} { append cmd { } |