mirror of
https://github.com/mnauw/git-remote-hg.git
synced 2025-11-17 00:10:39 +01:00
We are using some bash-specific tricks. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
14 lines
374 B
Bash
14 lines
374 B
Bash
#!/bin/bash
|
|
|
|
: "${SHARNESS_TEST_SRCDIR:=$(cd "$(dirname "${BASH_SOURCE-$0}")" && pwd)}"
|
|
. "$SHARNESS_TEST_SRCDIR"/sharness.sh
|
|
|
|
test_set_prereq PYTHON
|
|
|
|
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
|