Bourne shells do not maintain $PWD; update tests accordingly

This commit is contained in:
David Champion 2009-07-07 01:25:44 +02:00
parent 930e73d10f
commit 08998d553f
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ echo "[extensions]" >> $HGRCPATH
echo "convert = " >> $HGRCPATH
echo % create p4 depot
P4ROOT=$PWD/depot; export P4ROOT
P4ROOT=`pwd`/depot; export P4ROOT
P4AUDIT=$P4ROOT/audit; export P4AUDIT
P4JOURNAL=$P4ROOT/journal; export P4JOURNAL
P4LOG=$P4ROOT/log; export P4LOG

View File

@ -20,7 +20,7 @@ EOF
hg init test
echo '[extensions]' > test/.hg/hgrc
echo "engine = $PWD/engine.py" >> test/.hg/hgrc
echo "engine = `pwd`/engine.py" >> test/.hg/hgrc
cd test
cat > mymap << EOF