wrap-for-bin.shon commit clone: support atomic operation with --separate-git-dir (9be1980)
   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@@'
  10if test -n "$NO_SET_GIT_TEMPLATE_DIR"
  11then
  12        unset GIT_TEMPLATE_DIR
  13else
  14        GIT_TEMPLATE_DIR='@@BUILD_DIR@@/templates/blt'
  15        export GIT_TEMPLATE_DIR
  16fi
  17GITPERLLIB='@@BUILD_DIR@@/perl/blib/lib'
  18PATH='@@BUILD_DIR@@/bin-wrappers:'"$PATH"
  19export GIT_EXEC_PATH GITPERLLIB PATH
  20
  21exec "${GIT_EXEC_PATH}/@@PROG@@" "$@"