From d98f76573f36123d3f46d8931189040beaa48c00 Mon Sep 17 00:00:00 2001 From: cblgh Date: Mon, 7 Mar 2022 10:49:25 +0100 Subject: [PATCH] improve release script, add fts5 tag flag --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index bf47694..c8cae9a 100755 --- a/release.sh +++ b/release.sh @@ -6,7 +6,7 @@ do if [ $os = "windows" ]; then executable="lieu.exe" fi - env GOOS="$os" go build -ldflags "-s -w" + env GOOS="$os" go build -tags fts5 -ldflags "-s -w" tar czf "lieu-$os.tar.gz" README.md html/ data/ lieu.toml "$executable" echo "lieu-$os.tar.gz" rm -f "$executable"