From 20b0c712ec9ac94f8837d61681cf12add97cd6f2 Mon Sep 17 00:00:00 2001 From: tcr Date: Sat, 13 Aug 2016 20:15:56 +0200 Subject: [PATCH] Fix goxc release process, and exclude build/ from git --- .gitignore | 3 +++ .goxc.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1f558cd..fbb7104 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Build artefacts +build/ + # Makefile generated paths .gopath .sw? diff --git a/.goxc.json b/.goxc.json index 7a6143d..0eb6f40 100644 --- a/.goxc.json +++ b/.goxc.json @@ -1,6 +1,7 @@ { "TasksExclude": [ - "go-test" + "go-test", + "govet" ], "Arch": "amd64 arm", "Os": "linux darwin",