summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-01-05 11:49:06 +0300
committerGrail Finder <wohilas@gmail.com>2026-01-06 09:47:57 +0300
commit7ed24ce403713f463b83d8e7f01c3d91b568511d (patch)
tree0f54c5778fdb0d3b32123b83e40a9608e27562ee
parent27b732f3ce84186dacfe668ccaa110741ecc5a20 (diff)
Fix: default tags in makefile
-rw-r--r--Makefile4
1 files 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