Add dist and user installation make targets (#23)

This commit is contained in:
Maxim Baz
2019-03-12 22:35:20 +01:00
committed by GitHub
parent a2e19966d8
commit 0c183fa9d5
6 changed files with 202 additions and 4 deletions

View File

@@ -6,5 +6,5 @@ import "golang.org/x/sys/unix"
// Pledge allowed system calls
func Pledge(promises string) {
unix.Pledge(promises, nil)
unix.Pledge(promises, "")
}