t7505: use SHELL_PATH in hook
The hook doesn't run properly under Solaris /bin/sh. Let's use the SHELL_PATH the user told us about already instead. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
32aedd5496
commit
462f8caf24
@ -25,8 +25,9 @@ export FAKE_EDITOR
|
|||||||
HOOKDIR="$(git rev-parse --git-dir)/hooks"
|
HOOKDIR="$(git rev-parse --git-dir)/hooks"
|
||||||
HOOK="$HOOKDIR/prepare-commit-msg"
|
HOOK="$HOOKDIR/prepare-commit-msg"
|
||||||
mkdir -p "$HOOKDIR"
|
mkdir -p "$HOOKDIR"
|
||||||
cat > "$HOOK" <<'EOF'
|
echo "#!$SHELL_PATH" > "$HOOK"
|
||||||
#!/bin/sh
|
cat >> "$HOOK" <<'EOF'
|
||||||
|
|
||||||
if test "$2" = commit; then
|
if test "$2" = commit; then
|
||||||
source=$(git-rev-parse "$3")
|
source=$(git-rev-parse "$3")
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user