Skip to content

Commit 99de334

Browse files
WildCard65dvander
authored andcommitted
Ignore SSL errors if possible (otherwise, discuss other options)
1 parent 6ee4980 commit 99de334

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ matrix:
3232
- MATRIX_EVAL="CC=clang && CXX=clang++"
3333

3434
- os: osx
35-
osx_image: xcode7.3
35+
osx_image: xcode6.4
3636
sudo: true
3737
language: cpp
3838
env:

checkout-deps.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ if [ $? -eq 1 ]; then
5353
get_pip_url="https://bootstrap.pypa.io/get-pip.py"
5454

5555
if [ `command -v wget` ]; then
56-
wget $get_pip_url -O $get_pip
56+
wget $get_pip_url -O $get_pip --no-check-certificate
5757
elif [ `command -v curl` ]; then
58-
curl -o $get_pip $get_pip_url
58+
curl -o $get_pip $get_pip_url --insecure
5959
else
6060
echo "Failed to locate wget or curl. Install one of these programs to download 'get-pip.py'."
6161
exit 1

0 commit comments

Comments
 (0)