diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 15:09:27 (GMT) |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-10 01:19:22 (GMT) |
commit | 6a5955fac3bd5a1369e73512b9606769f0c95e7c (patch) | |
tree | 64c3fcbf973d37fc80a790f8bc4ab1caad438449 /lib | |
parent | 5922446794ee1bfcd4bede739467211cd46aa005 (diff) | |
download | git-6a5955fac3bd5a1369e73512b9606769f0c95e7c.zip git-6a5955fac3bd5a1369e73512b9606769f0c95e7c.tar.gz git-6a5955fac3bd5a1369e73512b9606769f0c95e7c.tar.bz2 |
git-gui: Use sh.exe in Cygwin shortcuts
Because we are trying to execute /bin/sh we know it must be a real
Windows executable and thus ends with the standard .exe suffix.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/shortcut.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shortcut.tcl b/lib/shortcut.tcl index 7086162..26adb99 100644 --- a/lib/shortcut.tcl +++ b/lib/shortcut.tcl @@ -54,7 +54,7 @@ proc do_cygwin_shortcut {} { set sh [exec cygpath \ --windows \ --absolute \ - /bin/sh] + /bin/sh.exe] set me [exec cygpath \ --unix \ --absolute \ |