Mercurial > hg
view tests/test-pull-permission @ 1285:1546c2aa6b30
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
author | Volker Kleinfeld <Volker.Kleinfeld@gmx.de> |
---|---|
date | Tue, 20 Sep 2005 21:35:51 -0700 |
parents | 937ee88da3ef |
children | 955a7caf005c |
line wrap: on
line source
#!/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