From 0f049721c6ab5b12d9425f908d1ff8c6c71a82cf Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Fri, 4 Feb 2022 17:42:22 -0500 Subject: add go-sqlite3 and sqlite_fts5 to build tags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index effbbbc..ab8c41f 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ # build binary all: - go build -ldflags='-s -w' + go build -tags='sqlite_fts5' -ldflags='-s -w' # run all tests test: - go test -cover ./... + go test -tags='sqlite_fts5' -cover ./... # run all tests, print result to stdout as json testjson: -- cgit v1.2.3