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 status -un | grep .egg-info | sed 's/\\/\//g' | xargs rm -rf

Or use hg purge if there are no other uncommitted files.
_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to