From 7ed24ce403713f463b83d8e7f01c3d91b568511d Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Mon, 5 Jan 2026 11:49:06 +0300 Subject: Fix: default tags in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fff1acf..eb9c574 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ .PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run noextra-server run: setconfig - go build -o gf-lt && ./gf-lt + go build -tags extra -o gf-lt && ./gf-lt server: setconfig - go build -o gf-lt && ./gf-lt -port 3333 + go build -tags extra -o gf-lt && ./gf-lt -port 3333 noextra-run: setconfig go build -tags '!extra' -o gf-lt && ./gf-lt -- cgit v1.2.3