Fix drone CI script

closes #2243
This commit is contained in:
sdarwin
2021-05-25 14:08:45 -05:00
committed by Richard Hodges
parent 01cd68c9a4
commit ed75617865
2 changed files with 3 additions and 2 deletions

View File

@ -35,6 +35,6 @@ fi
if [ "$MAJOR_VERSION" -gt "18" ]; then
sudo -E apt-get -o Acquire::Retries=3 -y install python3 python3-pip
ln -s /usr/bin/python3 /usr/bin/python
ln -s /usr/bin/pip3 /usr/bin/pip
ln -s /usr/bin/python3 /usr/bin/python || true
ln -s /usr/bin/pip3 /usr/bin/pip || true
fi

View File

@ -1,3 +1,4 @@
* Fix Drone CI script.
* Add example of reading large response body.
--------------------------------------------------------------------------------