From 7eafa2f1578e605e1e68d8ccba9d600cc6b89173 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Mon, 9 Jul 2007 03:28:41 -0400 Subject: git-gui: Improve the Windows and Mac OS X shortcut creators We now embed any GIT_* and SSH_* environment variables as well as the path to the git wrapper executable into the Mac OS X .app file. This should allow us to restore the environment properly when we restart. We also try to use proper Bourne shell single quoting when we can, as this avoids any sort of problems that might occur due to a path containing shell metacharacters. Signed-off-by: Shawn O. Pearce --- git-gui.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'git-gui.sh') diff --git a/git-gui.sh b/git-gui.sh index 3efecdd962..2077261e64 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -475,6 +475,11 @@ proc git_write {args} { return [open [concat $opt $cmdp $args] w] } +proc sq {value} { + regsub -all ' $value "'\\''" value + return "'$value'" +} + proc load_current_branch {} { global current_branch is_detached -- cgit v1.3