diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 11:10:26 -0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-07-09 21:19:22 -0400 |
commit | 264f4a32fa898a47e37ccb6f2580746d6f36453f (patch) | |
tree | 228d0589de373c1da59e8c120a7a280f005e6967 | |
parent | git-gui: Use sh.exe in Cygwin shortcuts (diff) | |
download | tgif-264f4a32fa898a47e37ccb6f2580746d6f36453f.tar.xz |
git-gui: Include a space in Cygwin shortcut command lines
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-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 26adb99821..c36be2f3cd 100644 --- a/lib/shortcut.tcl +++ b/lib/shortcut.tcl @@ -68,7 +68,7 @@ proc do_cygwin_shortcut {} { puts -nonewline $fd "@\"$sh\" --login -c \"" puts -nonewline $fd "GIT_DIR=[sq $gd]" puts -nonewline $fd " [sq $me]" - puts $fd "&\"" + puts $fd " &\"" close $fd } err]} { error_popup "Cannot write script:\n\n$err" |