about summary refs log tree commit diff
path: root/third_party/git/contrib/mw-to-git/bin-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/contrib/mw-to-git/bin-wrapper')
-rwxr-xr-xthird_party/git/contrib/mw-to-git/bin-wrapper/git14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/git/contrib/mw-to-git/bin-wrapper/git b/third_party/git/contrib/mw-to-git/bin-wrapper/git
new file mode 100755
index 000000000000..6663ae57e869
--- /dev/null
+++ b/third_party/git/contrib/mw-to-git/bin-wrapper/git
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# git executable wrapper script for Git-Mediawiki to run tests without
+# installing all the scripts and perl packages.
+
+GIT_ROOT_DIR=../../..
+GIT_EXEC_PATH=$(cd "$(dirname "$0")" && cd ${GIT_ROOT_DIR} && pwd)
+
+GITPERLLIB="$GIT_EXEC_PATH"'/contrib/mw-to-git'"${GITPERLLIB:+:$GITPERLLIB}"
+PATH="$GIT_EXEC_PATH"'/contrib/mw-to-git:'"$PATH"
+
+export GITPERLLIB PATH
+
+exec "${GIT_EXEC_PATH}/bin-wrappers/git" "$@"