Skip to content

Commit

Permalink
workaround for Redhat/Fedora cert.org certifi package quirk
Browse files Browse the repository at this point in the history
  • Loading branch information
HinTak committed Oct 5, 2018
1 parent 2daa1ef commit 202ecee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,10 @@ else
pip install beautifulsoup4
pip install jinja2
pip install cairocffi

# Redhat/Fedora systems may have a certifi package from cert.org,
# which is without cacert.pem .
if [ -f /etc/redhat-release ]; then
pip install --ignore-installed certifi
fi
fi

0 comments on commit 202ecee

Please sign in to comment.