diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 11:09:27 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 21:19:22 -0400 |
commit | 6a5955fac3bd5a1369e73512b9606769f0c95e7c (patch) | |
tree | 64c3fcbf973d37fc80a790f8bc4ab1caad438449 /lib/shortcut.tcl | |
parent | git-gui: Paper bag fix for Cygwin shortcut creation (diff) | |
download | tgif-6a5955fac3bd5a1369e73512b9606769f0c95e7c.tar.xz |
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/shortcut.tcl')
-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 7086162476..26adb99821 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 \ |