TravisCI: simplify printing installed files

This commit is contained in:
Rolf Eike Beer 2017-12-13 18:46:19 +01:00 committed by Sebastian Pipping
parent d9c3ae1bb1
commit c3b63ff202

View file

@ -47,14 +47,14 @@ elif [[ ${MODE} = cmake ]]; then
cmake .
make all test
make DESTDIR="${PWD}"/ROOT install
( cd ROOT/ && find | sort )
find ROOT -printf "%P\n" | sort
elif [[ ${MODE} = cmake-oos ]]; then
mkdir build
cd build
cmake ..
make all test
make DESTDIR="${PWD}"/ROOT install
( cd ROOT/ && find | sort )
find ROOT -printf "%P\n" | sort
else
./qa.sh "${MODE}"
fi