Chromium Code Reviews| Index: update_depot_tools |
| diff --git a/update_depot_tools b/update_depot_tools |
| index 8528b8bab511e07099a54542c43aac3e58b1f508..480dff339561713bb1ecf7f76e35c76507fcddd5 100755 |
| --- a/update_depot_tools |
| +++ b/update_depot_tools |
| @@ -153,3 +153,9 @@ then |
| fi |
| find "$base_dir" -iname "*.pyc" -exec rm {} \; |
| + |
| +# Initialize virtualenv. |
| +if [ ! -d "$base_dir/ENV" ]; then |
| + cd $base_dir |
| + python -u ./bootstrap/bootstrap.py --deps_file bootstrap/deps.pyl ENV |
|
pgervais
2015/06/24 00:55:56
This must be run even if ENV already exists, to up
Sergiy Byelozyorov
2015/06/24 05:12:32
Done.
|
| +fi |