diff options
| author | Markus Heidelberg <markus.heidelberg@web.de> | 2010-02-25 01:14:22 +0100 |
|---|---|---|
| committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2010-07-30 09:57:26 +0100 |
| commit | 2e0cda658e08482b804718bfa0f3e64e7af17ea7 (patch) | |
| tree | d74d2040fea72ca590a3673c6257404f7b334bf2 /git-gui.sh | |
| parent | git-gui: fix usage of themed widgets variable (diff) | |
| download | git-2e0cda658e08482b804718bfa0f3e64e7af17ea7.tar.gz git-2e0cda658e08482b804718bfa0f3e64e7af17ea7.zip | |
git-gui: fix "Explore Working Copy" for Windows again
It has already been fixed in commit 454efb47 (git-gui (Win): make
"Explore Working Copy" more robust, 2009-04-01), but has been broken in
commit 21985a11 (git-gui: handle non-standard worktree locations,
2010-01-23) by accidentally replacing too much with a new variable.
The problem can be reproduced when starting git-gui from within a
subdirectory. The solution is to convert the path name, explorer.exe is
invoked with, to a platform native name.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Diffstat (limited to 'git-gui.sh')
| -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 ec81b15595..ed8bbe1804 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -2104,7 +2104,7 @@ proc do_explore {} { # freedesktop.org-conforming system is our best shot set explorer "xdg-open" } - eval exec $explorer $_gitworktree & + eval exec $explorer [list [file nativename $_gitworktree]] & } set is_quitting 0 |
