We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f897652 commit 5783174Copy full SHA for 5783174
lib/dpl/provider/pypi.rb
@@ -67,7 +67,7 @@ def pypi_wheel_arg
67
68
def install_deploy_dependencies
69
# --user likely fails inside virtualenvs but is needed outside to avoid needing sudo.
70
- 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 && " \
71
"wget -nv -O - https://bootstrap.pypa.io/get-pip.py | python - --no-setuptools --no-wheel && " \
72
"pip install --upgrade #{pypi_setuptools_arg} #{pypi_twine_arg} #{pypi_wheel_arg}"
73
error "Couldn't install pip, setuptools, twine or wheel."
0 commit comments