Skip to content

Commit 202ecee

Browse files
committed
workaround for Redhat/Fedora cert.org certifi package quirk
1 parent 2daa1ef commit 202ecee

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tools/bootstrap.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,10 @@ else
1919
pip install beautifulsoup4
2020
pip install jinja2
2121
pip install cairocffi
22+
23+
# Redhat/Fedora systems may have a certifi package from cert.org,
24+
# which is without cacert.pem .
25+
if [ -f /etc/redhat-release ]; then
26+
pip install --ignore-installed certifi
27+
fi
2228
fi

0 commit comments

Comments
 (0)