diff options
author | Mark Levedahl <mlevedahl@gmail.com> | 2008-07-07 22:37:38 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-08 16:36:03 -0700 |
commit | dc0f70541503e9006ac2fe812591b080c169c572 (patch) | |
tree | 1563b3c7b4e9a3ae785dec9f0958f40f49261109 /Documentation/install-doc-quick.sh | |
parent | d1a4489a56e2ceac8e7dc9eb277a9f36fec725c5 (diff) | |
download | git-dc0f70541503e9006ac2fe812591b080c169c572.tar.gz |
install-doc-quick - use git --exec-path to find git-sh-setup
This is needed as git-sh-setup is no longer in the path.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/install-doc-quick.sh')
-rwxr-xr-x | Documentation/install-doc-quick.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/install-doc-quick.sh b/Documentation/install-doc-quick.sh index 5433cf8ced..35f440876e 100755 --- a/Documentation/install-doc-quick.sh +++ b/Documentation/install-doc-quick.sh @@ -6,7 +6,7 @@ head="$1" mandir="$2" SUBDIRECTORY_OK=t USAGE='<refname> <target directory>' -. git-sh-setup +. "$(git --exec-path)"/git-sh-setup cd_to_toplevel test -z "$mandir" && usage |