blob: 364d447bf6afbaaae61930b30f5a528e8f01da7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -ev
which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available
if [ "$BUILD_MODE" = "coverage" ]; then
wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz
tar -xvf lcov_1.11.orig.tar.gz
export PREFIX="/tmp"
make -C lcov-1.11/ install
gem install coveralls-lcov
fi
|