From 5783174d59b862db7e0975b1c0c17c53b220b066 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Mon, 10 Feb 2020 14:59:04 +0300 Subject: [PATCH] disable tracing --- lib/dpl/provider/pypi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpl/provider/pypi.rb b/lib/dpl/provider/pypi.rb index 334be0da8..e6501c633 100644 --- a/lib/dpl/provider/pypi.rb +++ b/lib/dpl/provider/pypi.rb @@ -67,7 +67,7 @@ def pypi_wheel_arg def install_deploy_dependencies # --user likely fails inside virtualenvs but is needed outside to avoid needing sudo. - unless context.shell "set -x; set; if [ -z \"${VIRTUAL_ENV}\" ]; then export PIP_USER=yes; fi && " \ + unless context.shell "if [ -z \"${VIRTUAL_ENV}\" ]; then export PIP_USER=yes; fi && " \ "wget -nv -O - https://bootstrap.pypa.io/get-pip.py | python - --no-setuptools --no-wheel && " \ "pip install --upgrade #{pypi_setuptools_arg} #{pypi_twine_arg} #{pypi_wheel_arg}" error "Couldn't install pip, setuptools, twine or wheel."