wrap-for-bin.shon commit t/t0001-init.sh: add test for 'init with init.templatedir set' (a94d305)
   1#!/bin/sh
   2
   3# wrap-for-bin.sh: Template for git executable wrapper scripts
   4# to run test suite against sandbox, but with only bindir-installed
   5# executables in PATH.  The Makefile copies this into various
   6# files in bin-wrappers, substituting
   7# @@BUILD_DIR@@ and @@PROG@@.
   8
   9GIT_EXEC_PATH='@@BUILD_DIR@@'
  10test -z "$NO_SET_GIT_TEMPLATE_DIR" &&
  11        GIT_TEMPLATE_DIR='@@BUILD_DIR@@/templates/blt'
  12GITPERLLIB='@@BUILD_DIR@@/perl/blib/lib'
  13PATH='@@BUILD_DIR@@/bin-wrappers:'"$PATH"
  14export GIT_EXEC_PATH GIT_TEMPLATE_DIR GITPERLLIB PATH
  15
  16exec "${GIT_EXEC_PATH}/@@PROG@@" "$@"