##// END OF EJS Templates
Use python instead of shell printf with \x sequences for test-encoding....
Use python instead of shell printf with \x sequences for test-encoding. Needed e.g. to be compatible with Solaris.

File last commit:

r2990:61fcd9fa default
r3789:734b1d6b default
Show More
test-mq-qnew-twice
14 lines | 180 B | text/plain | TextLexer
#!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg init a
cd a
hg qnew first.patch
hg qnew first.patch
touch ../first.patch
hg qimport ../first.patch
exit 0