We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3eefa15 + 95e8ff2 commit 238ddaaCopy full SHA for 238ddaa
1 file changed
linuxdeploy-plugin-conda.sh
@@ -111,12 +111,9 @@ if [ "$PIP_REQUIREMENTS" != "" ]; then
111
pushd "$PIP_WORKDIR"
112
fi
113
114
- pip_args=('--prefix="$APPDIR"/usr/conda/')
115
- if [ "$PIP_VERBOSE" != "" ]; then
116
- pip_args+=("-v")
117
- fi
+ # add verbose flag if requested
+ pip install -U $PIP_REQUIREMENTS --prefix="$APPDIR"/usr/conda/ ${PIP_VERBOSE:+-v}
118
119
- pip install -U $PIP_REQUIREMENTS "${pip_args[@]}"
120
121
if [ "$PIP_WORKDIR" != "" ]; then
122
popd
0 commit comments