diff options
author | Ritu Sood <Ritu.Sood@intel.com> | 2020-06-17 05:06:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-06-17 05:06:40 +0000 |
commit | 7b860ae60bf9686b449ab2fe3f18c33944bdd71c (patch) | |
tree | c9efb7bf377a2f33ae64299c98d3161aec5d6f4c /kud/hosting_providers/vagrant/setup.sh | |
parent | 964db6a95cfdd82969f6af5a09822929a1862408 (diff) | |
parent | 662f53dd795fbc439b923e09cbf088f613d01003 (diff) |
Merge "optimize size and time using "--no-cache-dir""
Diffstat (limited to 'kud/hosting_providers/vagrant/setup.sh')
-rwxr-xr-x | kud/hosting_providers/vagrant/setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kud/hosting_providers/vagrant/setup.sh b/kud/hosting_providers/vagrant/setup.sh index 9c65ccdb..00b6e86f 100755 --- a/kud/hosting_providers/vagrant/setup.sh +++ b/kud/hosting_providers/vagrant/setup.sh @@ -178,9 +178,9 @@ ${INSTALLER_CMD} "${packages[@]}" if ! which pip; then curl -sL https://bootstrap.pypa.io/get-pip.py | sudo python else - sudo -H -E pip install --upgrade pip + sudo -H -E pip install --no-cache-dir --upgrade pip fi -sudo -H -E pip install tox +sudo -H -E pip install --no-cache-dir tox if [[ ${http_proxy+x} ]]; then vagrant plugin install vagrant-proxyconf fi |