diff options
| author | Grail Finder <wohilas@gmail.com> | 2026-01-05 11:49:06 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2026-01-06 09:47:57 +0300 |
| commit | 7ed24ce403713f463b83d8e7f01c3d91b568511d (patch) | |
| tree | 0f54c5778fdb0d3b32123b83e40a9608e27562ee | |
| parent | 27b732f3ce84186dacfe668ccaa110741ecc5a20 (diff) | |
Fix: default tags in makefile
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
