diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-25 21:08:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-04-25 21:08:46 -0400 |
commit | 4adf9b46ce958c33aaede3bb1b9521cea6b1eb53 (patch) | |
tree | 37281d2acab00de72511e2fba2d6044fcd472558 | |
parent | a5cc7561ff30d8b96c5c36af729c267a0664f94a (diff) | |
download | python-coveragepy-git-4adf9b46ce958c33aaede3bb1b9521cea6b1eb53.tar.gz |
Py3.x doesn't need a separate virtualenv any more.
-rwxr-xr-x | build_ve.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_ve.sh b/build_ve.sh index 6493fa99..4833e93d 100755 --- a/build_ve.sh +++ b/build_ve.sh @@ -31,7 +31,7 @@ do echo The version is $ver # Make the virtualenv - $p/bin/virtualenv$suff $ve/$ver + $p/bin/virtualenv $ve/$ver # Activate the virtualenv source $ve/$ver/bin/activate |