comparison python/install_config.py @ 219:4390ca34912c

use new virtualenv repo
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 26 Apr 2012 09:29:42 -0700
parents e4221e45d6c1
children 761e7dfc675e
comparison
equal deleted inserted replaced
218:e4221e45d6c1 219:4390ca34912c
66 66
67 # do git stuff 67 # do git stuff
68 git = which('git') 68 git = which('git')
69 if git: 69 if git:
70 # get virtual env 70 # get virtual env
71 virtualenv_commands = [['hg', 'clone', 'http://bitbucket.org/ianb/virtualenv'], 71 virtualenv_commands = [['git', 'clone', 'https://github.com/pypa/virtualenv.git'],
72 ['ln', '-s', HOME + '/virtualenv/virtualenv.py', HOME + '/bin/']] 72 ['ln', '-s', HOME + '/virtualenv/virtualenv.py', HOME + '/bin/']]
73 execute(*virtualenv_commands) 73 execute(*virtualenv_commands)
74 74
75 # setup git's global ignore, since git is silly about this 75 # setup git's global ignore, since git is silly about this
76 # and doesn't look for the file in the right place 76 # and doesn't look for the file in the right place