Add debian packaging and some build scripts

This commit is contained in:
Tulir Asokan
2018-05-03 10:03:25 +03:00
parent b796c2e209
commit 93cbdc0ca8
6 changed files with 29 additions and 1 deletions

8
scripts/coverage Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
mkdir -p target/
go test ./... -coverprofile=target/coverage.out
if [ ! -z $1 ]; then
go tool cover -html=coverage.out -o $1
else
go tool cover -html=coverage.out
fi