1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-05-22 10:15:16 +02:00

Fix lcov build in Vagrantfile.

-q was being instead of -s for silent mode which caused the build to fail.
This commit is contained in:
David Steele
2019-11-19 20:52:01 -05:00
parent 5f03471445
commit 63c4c14836
+1 -1
View File
@@ -73,7 +73,7 @@ Vagrant.configure(2) do |config|
#---------------------------------------------------------------------------------------------------------------------------
echo 'Build lcov' && date
wget -q -O - https://github.com/linux-test-project/lcov/releases/download/v1.14/lcov-1.14.tar.gz | tar zx -C /root
make -q -C /root/lcov-1.14 install
make -s -C /root/lcov-1.14 install
rm -rf /root/lcov-1.14
#---------------------------------------------------------------------------------------------------------------------------