Fix: default tags in makefile

This commit is contained in:
Grail Finder
2026-01-05 11:49:06 +03:00
parent 27b732f3ce
commit 7ed24ce403

View File

@@ -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