mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-05-01 21:23:52 +00:00
* Adding nicer header with LICENSE to single file version * Adding badges * Clean up sh files * Adding explicit in a few places * More fixes from codacy
18 lines
420 B
Bash
18 lines
420 B
Bash
#!/bin/env sh
|
|
# (Source me)
|
|
set -evx
|
|
|
|
LCOV_URL="http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.13.orig.tar.gz"
|
|
cd "${DEPS_DIR}"
|
|
|
|
if [[ ! -f "${DEPS_DIR}/lcov/bin/lcov" ]] ; then
|
|
echo "Downloading lcov"
|
|
mkdir -p lcov
|
|
travis_retry wget --no-check-certificate --quiet -O - "${LCOV_URL}" | tar --strip-components=1 -xz -C lcov
|
|
fi
|
|
|
|
export PATH="${DEPS_DIR}/lcov/bin:${PATH}"
|
|
cd "${TRAVIS_BUILD_DIR}"
|
|
|
|
set +evx
|