1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-25 00:53:43 +00:00

Fix install command for hiredis in travis script

This commit is contained in:
King_DuckZ 2016-07-15 19:39:20 +01:00
parent 32ca308982
commit 06abcab627

View file

@ -83,7 +83,7 @@ install:
- |
if [ ! -f opt/lib/libhiredis.so ]; then
mkdir hiredis && travis_retry wget --quiet -O - https://github.com/redis/hiredis/archive/v0.13.3.tar.gz | tar --strip-components=1 -xz -C hiredis
(cd hiredis && make && cp libhiredis.so ${DEPS_DIR}/opt/lib)
(cd hiredis && make && make PREFIX=${DEPS_DIR}/opt install)
fi
- cd ${TRAVIS_BUILD_DIR}