diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2021-09-15 15:11:19 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2021-09-15 17:14:20 +0100 |
commit | 57d81af893ed60abb6b1772532ce73ac5e489d4b (patch) | |
tree | a363bd97ecfc431753d4e14dc6de6c65a5a079fd /scripts | |
parent | 8775b9cf6c716f51fe90d668e734a1288c8b5404 (diff) | |
download | klee-57d81af893ed60abb6b1772532ce73ac5e489d4b.tar.gz |
Install git as a requirement for codecov
Codecov depends on git to detect the SHA sum of the repository. Install as a dependency.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/p-klee-linux-ubuntu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/p-klee-linux-ubuntu.inc b/scripts/build/p-klee-linux-ubuntu.inc index 4967aa3c..d2847343 100644 --- a/scripts/build/p-klee-linux-ubuntu.inc +++ b/scripts/build/p-klee-linux-ubuntu.inc @@ -35,7 +35,7 @@ install_build_dependencies_klee() { ) if [[ $(to_bool "${COVERAGE}") -eq 1 ]]; then - dependencies+=(lcov curl) + dependencies+=(lcov curl git) fi apt -y --no-install-recommends install "${dependencies[@]}" |