Commit aeec276b authored by Joe McIlvain's avatar Joe McIlvain

Problem: Travis ci logs are too long

Solution: Don't print tar extraction verbosely
parent eae67971
......@@ -27,7 +27,7 @@ wget "https://download.libsodium.org/libsodium/releases/LATEST.tar.gz" \
-O "${cache}/libsodium.tar.gz"
(cd "${cache}" && mkdir libsodium \
&& tar -C libsodium -xvf libsodium.tar.gz --strip=1 \
&& tar -C libsodium -xf libsodium.tar.gz --strip=1 \
&& cd "libsodium" && ./autogen.sh \
&& ./configure "${ANDROID_BUILD_OPTS[@]}" --disable-soname-versions \
&& make \
......
......@@ -2,7 +2,7 @@
(cd '/tmp' \
&& wget http://dl.google.com/android/ndk/android-ndk-r9-linux-x86_64.tar.bz2 \
&& tar -xvf android-ndk-r9-linux-x86_64.tar.bz2 \
&& tar -xf android-ndk-r9-linux-x86_64.tar.bz2 \
&& mv android-ndk-r9 android-ndk)
export ANDROID_NDK_ROOT="/tmp/android-ndk"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment