diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-31 14:44:36 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-31 14:44:36 -0500 |
commit | dc6b09f58d2a4287bdea5ae2197944a9e93c56c8 (patch) | |
tree | 861804fb4dec20040211c5da807532b03e6d8e85 /etc | |
parent | 95c3d164fbd68e720a93192f8d99540a7afdd266 (diff) | |
download | docker-python-dc6b09f58d2a4287bdea5ae2197944a9e93c56c8.tar.gz |
Remove new-ish pip argument
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/tasks/002-python-packages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/tasks/002-python-packages.sh b/etc/tasks/002-python-packages.sh index bcd0b6f..69d8f51 100755 --- a/etc/tasks/002-python-packages.sh +++ b/etc/tasks/002-python-packages.sh @@ -18,7 +18,7 @@ function build() # Iterate over pip requirement files for req in ${reqdir}/* do - pip install --upgrade --progress-bar=off -r "${req}" + pip install --upgrade -r "${req}" retval=$? if [[ ${retval} != 0 ]]; then echo "BUILD FAILED: ${req}" |