aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2024-10-28 13:02:36 +0100
committerGabriel A. Giovanini <mail@gabrielgio.me>2024-10-28 13:02:36 +0100
commit5ce7d18d415c6911740ba15e3b4e6a1b94562019 (patch)
tree35047f4caf076c007cd124501c4de80a091bf583
parent1e14d4d35d90923a6108be568185a3f0961bdd2e (diff)
downloadcerrado-5ce7d18d415c6911740ba15e3b4e6a1b94562019.tar.gz
cerrado-5ce7d18d415c6911740ba15e3b4e6a1b94562019.tar.bz2
cerrado-5ce7d18d415c6911740ba15e3b4e6a1b94562019.zip
fix: Add ldflags to run
Without it go run can't set the proper slug for the css file.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 ./...