Mercurial > evolve
view docs/tutorial/testlib/pythonpath.sh @ 3925:3c2a464ae6fc stable
format: fix indentation level
Previous change got pushed without the fix by mistake.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 02 Aug 2018 02:41:33 +0200 |
parents | aad37ffd7d58 |
children |
line wrap: on
line source
# utility to setup pythonpath to point into the tested repository export SRCDIR=`dirname $TESTDIR` if [ -n "$PYTHONPATH" ]; then export HGTEST_ORIG_PYTHONPATH=$PYTHONPATH export PYTHONPATH=$SRCDIR:$PYTHONPATH else export PYTHONPATH=$SRCDIR fi