Suppress output from pushd and popd in travis build script

This commit is contained in:
Tristan Penman 2016-01-27 10:16:14 -08:00
parent b7bf364b98
commit 3117ce1100

View File

@ -17,7 +17,7 @@ else
fi
mkdir -p build
pushd build
pushd build > /dev/null
echo "Attempting to build and run test suite with C++11 support disabled..."
cmake -DVALIJSON_CXX11_ADAPTERS=disabled ..
@ -37,4 +37,4 @@ fi
make clean
popd
popd > /dev/null