Re: No more egg-info directories in source directory

2012-09-05 Thread Mark Hammond
On 5/09/2012 5:14 PM, Blair McBride wrote: On 5/09/2012 6:13 a.m., Gregory Szorc wrote: $ hg status -u | grep .egg-info | xargs rm -rf $ git ls-files -o '*.egg-info*' | xargs rm -rf Those of you on Windows will notice this doesn't work, thanks to Windows-style paths. The following will: $ hg

Re: No more egg-info directories in source directory

2012-09-05 Thread Dao
On 05.09.2012 09:14, Blair McBride wrote: On 5/09/2012 6:13 a.m., Gregory Szorc wrote: $ hg status -u | grep .egg-info | xargs rm -rf $ git ls-files -o '*.egg-info*' | xargs rm -rf Those of you on Windows will notice this doesn't work, thanks to Windows-style paths. The following will: $ hg s

Re: No more egg-info directories in source directory

2012-09-05 Thread Neil
Blair McBride wrote: On 5/09/2012 6:13 a.m., Gregory Szorc wrote: $ hg status -u | grep .egg-info | xargs rm -rf $ git ls-files -o '*.egg-info*' | xargs rm -rf Those of you on Windows will notice this doesn't work, thanks to Windows-style paths. The following will: $ hg status -un | grep

Re: No more egg-info directories in source directory

2012-09-05 Thread Blair McBride
On 5/09/2012 6:13 a.m., Gregory Szorc wrote: $ hg status -u | grep .egg-info | xargs rm -rf $ git ls-files -o '*.egg-info*' | xargs rm -rf Those of you on Windows will notice this doesn't work, thanks to Windows-style paths. The following will: $ hg status -un | grep .egg-info | sed 's/\\/\/

No more egg-info directories in source directory

2012-09-04 Thread Gregory Szorc
I just landed a change to how the Python virtualenv is populated during configure. The short story is there are no more .egg-info/ directories created in the source directory as part of virtualenv population. These directories are no longer ignored by .hgignore and .gitignore, so the next time