From ed75617865ba4ff6efcf1c2eb2d7d7be59abc54c Mon Sep 17 00:00:00 2001 From: sdarwin Date: Tue, 25 May 2021 14:08:45 -0500 Subject: [PATCH] Fix drone CI script closes #2243 --- .drone/linux-cxx-install.sh | 4 ++-- CHANGELOG.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone/linux-cxx-install.sh b/.drone/linux-cxx-install.sh index 5020717a..69a042cd 100755 --- a/.drone/linux-cxx-install.sh +++ b/.drone/linux-cxx-install.sh @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 227bcb54..cb52284f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +* Fix Drone CI script. * Add example of reading large response body. --------------------------------------------------------------------------------