From 5ce7d18d415c6911740ba15e3b4e6a1b94562019 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Mon, 28 Oct 2024 13:02:36 +0100 Subject: fix: Add ldflags to run Without it go run can't set the proper slug for the css file. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da2f091..80aaf2b 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ install: install -Dm755 $(BIN) $(BINDIR)/$(BIN) run: sass tmpl - go run . + go run -ldflags=$(LDFLAGS) . test: go test -v --tags=unit ./... -- cgit v1.2.3