Skip to content

Commit 7a49bbb

Browse files
authored
Replaced ftp with http in the Makefile
1 parent 3167ca1 commit 7a49bbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ docs:
2121

2222
.googletest:
2323
if [ "${CI}" = "true" ] && [ "${TRAVIS_OS_NAME}" == "linux" ]; then \
24-
curl ftp://ftp.ripcordsoftware.com/pub/gtest-${GTEST_VER}-travis-ci-externals-installed.tar.xz -O && \
24+
curl http://cdn.ripcordsoftware.com/gtest-${GTEST_VER}-travis-ci-externals-installed.tar.xz -O && \
2525
tar xfJ gtest-*; \
2626
elif [ ! -d externals/gtest-${GTEST_VER}/lib/.libs ]; then \
2727
mkdir -p externals && \
2828
cd externals && \
29-
if [ ! -f gtest-${GTEST_VER}.zip ]; then curl ftp://ftp.ripcordsoftware.com/pub/gtest-${GTEST_VER}.zip -O; fi && \
29+
if [ ! -f gtest-${GTEST_VER}.zip ]; then curl http://cdn.ripcordsoftware.com/gtest-${GTEST_VER}.zip -O; fi && \
3030
unzip gtest-${GTEST_VER}.zip && \
3131
cd gtest-${GTEST_VER} && \
3232
./configure && \

0 commit comments

Comments
 (0)