##// END OF EJS Templates
Bourne shells do not maintain $PWD; update tests accordingly
David Champion -
r9044:d4d4da54 default
parent child Browse files
Show More
@@ -6,7 +6,7 b' echo "[extensions]" >> $HGRCPATH'
6 echo "convert = " >> $HGRCPATH
6 echo "convert = " >> $HGRCPATH
7
7
8 echo % create p4 depot
8 echo % create p4 depot
9 P4ROOT=$PWD/depot; export P4ROOT
9 P4ROOT=`pwd`/depot; export P4ROOT
10 P4AUDIT=$P4ROOT/audit; export P4AUDIT
10 P4AUDIT=$P4ROOT/audit; export P4AUDIT
11 P4JOURNAL=$P4ROOT/journal; export P4JOURNAL
11 P4JOURNAL=$P4ROOT/journal; export P4JOURNAL
12 P4LOG=$P4ROOT/log; export P4LOG
12 P4LOG=$P4ROOT/log; export P4LOG
@@ -20,7 +20,7 b' EOF'
20
20
21 hg init test
21 hg init test
22 echo '[extensions]' > test/.hg/hgrc
22 echo '[extensions]' > test/.hg/hgrc
23 echo "engine = $PWD/engine.py" >> test/.hg/hgrc
23 echo "engine = `pwd`/engine.py" >> test/.hg/hgrc
24
24
25 cd test
25 cd test
26 cat > mymap << EOF
26 cat > mymap << EOF
General Comments 0
You need to be logged in to leave comments. Login now