mirror of
https://github.com/Yubico/yubico-pam.git
synced 2024-11-29 09:24:22 +01:00
14 lines
195 B
Bash
Executable File
14 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
autoreconf -i
|
|
|
|
./configure $CONFIGURE_ARGS $COVERAGE
|
|
make check
|
|
if [ "x$COVERAGE" != "x" ]; then
|
|
gem install coveralls-lcov
|
|
coveralls-lcov coverage/app2.info
|
|
fi
|