I'm trying something simple. I clone a repository and then I want to create a virtualenv in it:
hg clone ssh://hg@bitbucket.org/neves/repo site
virtualenv site
When I run the command to create a Python virtualenv in an exiting project, a directory named local is created. All the contents of the "site" dir are copied to this local dir. I don't want this behaviour. Am I doing something wrong? How do I create a virtualenv without creating this local dir?
I'm using virtualenv 1.10.1