From e20b15582fcad2d7ac73e310bdab8a6c7db55025 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Thu, 22 Nov 2018 13:09:31 +0800 Subject: [PATCH] Print the final requirements file Make it clear what's being pulled in by pip install. Change-Id: I1d659de74e1eb6e37a390285ed3b9854d19edbc9 Signed-off-by: Thanh Ha --- shell/python-tools-install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell/python-tools-install.sh b/shell/python-tools-install.sh index 4506062c..b13edf35 100644 --- a/shell/python-tools-install.sh +++ b/shell/python-tools-install.sh @@ -19,6 +19,10 @@ python-heatclient~=1.16.1 python-openstackclient~=3.16.0 EOF +echo "Requirements file" +echo "-----------------" +cat "$REQUIREMENTS_FILE" + # Use `python -m pip` to ensure we are using the latest version of pip python -m pip install --user --quiet --upgrade pip python -m pip install --user --quiet --upgrade setuptools -- 2.16.6