mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2025-11-15 23:45:49 +01:00
The prereq check was necessary in upstream git, not here where it's a noop. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
12 lines
350 B
Bash
12 lines
350 B
Bash
#!/bin/bash
|
|
|
|
: "${SHARNESS_TEST_SRCDIR:=$(cd "$(dirname "${BASH_SOURCE-$0}")" && pwd)}"
|
|
. "$SHARNESS_TEST_SRCDIR"/sharness.sh
|
|
|
|
GIT_AUTHOR_EMAIL=author@example.com
|
|
GIT_AUTHOR_NAME='A U Thor'
|
|
GIT_COMMITTER_EMAIL=committer@example.com
|
|
GIT_COMMITTER_NAME='C O Mitter'
|
|
export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
|
|
export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
|