From 00ed2990eb7fdf0fe3213d90fa8e322adb0fc20f Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sat, 6 Apr 2019 11:46:27 -0400 Subject: [PATCH] Do Travis builds without sqlite Using xgo comes with its own gomod-related issues. So let's see if this fixes the build issue mentioned in the previous commit. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f384cfd..a3a7d3d 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ TMPBIN=./tmp all : build -ci: ci-assets deps $(TMPBIN)/xgo - $(TMPBIN)/xgo -v -tags='sqlite' ./cmd/writefreely +ci: ci-assets deps + cd cmd/writefreely; $(GOBUILD) -v build: assets deps cd cmd/writefreely; $(GOBUILD) -v -tags='sqlite'