cerrado @ 5ce7d18d415c6911740ba15e3b4e6a1b94562019

fix: Add ldflags to run

Without it go run can't set the proper slug for the css file.
diff --git a/Makefile b/Makefile
index da2f09103e43dd1aef25f2f284ea1f806a3f0598..80aaf2b8a9c0462465409b4d790f3da595ac6812 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 ./...