From 03a0ab8e39bcf80877392176b2f6181161d88bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Fri, 16 Jan 2015 01:00:00 +0100 Subject: [PATCH] Updated bootstrap script to invoke buildout --- bootstrap-venv.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bootstrap-venv.py b/bootstrap-venv.py index eced63a..f697c51 100644 --- a/bootstrap-venv.py +++ b/bootstrap-venv.py @@ -140,9 +140,9 @@ def bootstrap_buildout(venv_dir, bootstrap_path): else: fp.close() - print("Bootstrapping Buildout using: %s %s..." % ( + print("Bootstrapping Buildout using: %s %s install..." % ( python_bin, bootstrap_path)) - subprocess.check_call([python_bin, bootstrap_path]) + subprocess.check_call([python_bin, bootstrap_path, "install"]) if len(sys.argv) == 2: @@ -159,4 +159,3 @@ venv_dir = create_virtualenv(destination) bootstrap_path = download_bootstrap(destination) bootstrap_buildout(venv_dir, bootstrap_path) -print("You can know run ./bin/buildout from directory %s" % real_destination)