10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd build-root
|
||
|
rm -rf html
|
||
|
mkdir html
|
||
|
lcov --no-checksum --directory . --capture --output-file out.info
|
||
|
genhtml out.info -o html
|