From 3117ce1100184d26c41e975a9ec04cd893cd3a63 Mon Sep 17 00:00:00 2001 From: Tristan Penman Date: Wed, 27 Jan 2016 10:16:14 -0800 Subject: [PATCH] Suppress output from pushd and popd in travis build script --- travis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis.sh b/travis.sh index 9f240d3..9918a67 100755 --- a/travis.sh +++ b/travis.sh @@ -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