mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
Escape Git's exec path in contrib/rerere-train.sh script
Whitespace can cause the source command to fail. This is usually not a problem on Unix systems, but on Windows Git is likely to be installed under "C:/Program Files/", thus rendering the script broken. Signed-off-by: Daniel Knittl-Frank <knittl89+git@googlemail.com> Signed-off-by: Jeff King <peff@peff.net>
This commit is contained in:
parent
af40944bda
commit
4573a68e9b
@ -7,7 +7,7 @@ USAGE="$me rev-list-args"
|
||||
|
||||
SUBDIRECTORY_OK=Yes
|
||||
OPTIONS_SPEC=
|
||||
. $(git --exec-path)/git-sh-setup
|
||||
. "$(git --exec-path)/git-sh-setup"
|
||||
require_work_tree
|
||||
cd_to_toplevel
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user