diff options
author | William Deegan <bill@baddogconsulting.com> | 2021-01-24 01:28:51 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2021-01-24 01:28:51 (GMT) |
commit | cadf26201c295c8f8cc1a3c8dbdf99f85f3dc3f1 (patch) | |
tree | 4cd69a7ad7ea60830d8661da82e569e56b6d9951 | |
parent | c6d23b256bf548a664dd659be1da7c244c56abdf (diff) | |
download | SCons-cadf26201c295c8f8cc1a3c8dbdf99f85f3dc3f1.zip SCons-cadf26201c295c8f8cc1a3c8dbdf99f85f3dc3f1.tar.gz SCons-cadf26201c295c8f8cc1a3c8dbdf99f85f3dc3f1.tar.bz2 |
[appveyor skip] fix hanging pip uninstall
-rwxr-xr-x | .travis/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 1cd0489..93e446e 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -47,7 +47,9 @@ else if [[ "$BUILD_LXML_FROM_GIT" == "1" ]]; then - pip uninstall lxml + pip uninstall -y lxml + pip cache purge + # for ubuntu 20.04 needed this as well sudo apt install libxslt1-dev |