##// END OF EJS Templates
Make 'hg import' platform independent....
Make 'hg import' platform independent. - moved popen("patch ...") from commands.py to util.py - files may not be single quoted in popen under windows: fixed - patch returns the files quoted under windows. quotes need to be stripped off: fixed

File last commit:

r1244:937ee88d default
r1285:1546c2aa default
Show More
test-pull-permission
20 lines | 169 B | text/plain | TextLexer
/ tests / test-pull-permission
#!/bin/sh
mkdir a
cd a
hg init
echo foo > b
hg add b
hg ci -m "b" -d "0 0"
chmod -w .hg
cd ..
hg clone a b
cd b
hg verify
cd ..
chmod +w a/.hg # let test clean up