diff options
author | Paul Duncan <pabs@pablotron.org> | 2022-02-05 02:32:16 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2022-02-05 02:32:16 -0500 |
commit | 9d7f55d228ce20f0ba0642616abdd77b2235b28c (patch) | |
tree | c9fac11e405011207f1bcecf63e6398628317f90 | |
parent | 35fd1fa3eeb9def69d00470192873297f8c845bc (diff) | |
download | cvez-9d7f55d228ce20f0ba0642616abdd77b2235b28c.tar.bz2 cvez-9d7f55d228ce20f0ba0642616abdd77b2235b28c.zip |
Makefile: add sqlite_json to build tags
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,11 +2,11 @@ # build binary all: - go build -tags='sqlite_fts5' -ldflags='-s -w' + go build -tags='sqlite_fts5 sqlite_json' -ldflags='-s -w' # run all tests test: - go test -tags='sqlite_fts5' -cover ./... + go test -tags='sqlite_fts5 sqlite_json' -cover ./... # run all tests, print result to stdout as json testjson: |