docs: fix typo in makefile command

Co-authored-by: aider (ollama_chat/gpt-oss:120b) <aider@aider.chat>
This commit is contained in:
2025-11-30 21:05:44 -06:00
parent 06e6040066
commit fc84f39676

View File

@@ -1,5 +1,5 @@
## BUILD ## BUILD
GO_BUILD=go build -ldflags="-X 'katenary.io/internal/generator.Version=$(VERSION)'" -trimpath -o $(OUTPUT) ./cmd/katenary GO_BUILD=go build -buildvcs=false -ldflags="-X 'katenary.io/internal/generator.Version=$(VERSION)'" -trimpath -o $(OUTPUT) ./cmd/katenary
# Simply build the binary for the current OS and architecture # Simply build the binary for the current OS and architecture
build: pull katenary build: pull katenary
@@ -66,7 +66,7 @@ dist/katenary-freebsd-arm64: $(SOURCES) go.mod go.sum
$(MAKE) katenary GOOS=freebsd GOARCH=arm64 OUTPUT=$@ $(MAKE) katenary GOOS=freebsd GOARCH=arm64 OUTPUT=$@
dist/katenary-windows-setup.exe: nsis/EnVar.dll dist/katenary.exe dist/katenary-windows-setup.exe: nsis/EnVar.dll dist/katenary.exe
@$(CTN) run -w /opt/katenary $(PKG_OCI_OPTS) \ @$(CTN) run -w /opt/katenary/dist $(PKG_OCI_OPTS) \
makensis -DAPP_VERSION=$(VERSION) nsis/katenary.nsi makensis -DAPP_VERSION=$(VERSION) nsis/katenary.nsi
mv nsis/katenary-windows-setup.exe dist/katenary-windows-setup.exe mv nsis/katenary-windows-setup.exe dist/katenary-windows-setup.exe