Use (probably?) correct path to test log to cat on error.

This commit is contained in:
iphydf
2019-01-06 21:03:16 +00:00
parent e5561ad2b0
commit 6bc12232ac
+1 -1
View File
@@ -41,7 +41,7 @@ travis_script() {
cd _build # pushd
../configure $CONFIG_FLAGS || (cat config.log && false)
make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS"
make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" || (cat build/test-suite.log && false)
make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" || (cat tox-*/_build/build/test-suite.log && false)
cd - # popd
}