https://github.com/git/git
Revision e923eaeb901ff056421b9007adcbbce271caa7b6 authored by Junio C Hamano on 12 February 2010, 23:45:05 UTC, committed by Junio C Hamano on 12 February 2010, 23:45:05 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ca5812d
Raw File
Tip revision: e923eaeb901ff056421b9007adcbbce271caa7b6 authored by Junio C Hamano on 12 February 2010, 23:45:05 UTC
Git 1.7.0
Tip revision: e923eae
wrap-for-bin.sh
#!/bin/sh

# wrap-for-bin.sh: Template for git executable wrapper scripts
# to run test suite against sandbox, but with only bindir-installed
# executables in PATH.  The Makefile copies this into various
# files in bin-wrappers, substituting
# @@BUILD_DIR@@ and @@PROG@@.

GIT_EXEC_PATH='@@BUILD_DIR@@'
GIT_TEMPLATE_DIR='@@BUILD_DIR@@/templates/blt'
GITPERLLIB='@@BUILD_DIR@@/perl/blib/lib'
PATH='@@BUILD_DIR@@/bin-wrappers:'"$PATH"
export GIT_EXEC_PATH GIT_TEMPLATE_DIR GITPERLLIB PATH

exec "${GIT_EXEC_PATH}/@@PROG@@" "$@"
back to top