cerrado @ c7b8a0958f779b9175f147edb417e2f03795e4e4

ref: Make slug configurable
 1diff --git a/Makefile b/Makefile
 2index 8f6d462fa6a51fdf81da416dae3f1807c54019c5..068f872f4466fcf2cf7cacddb0a6dc17c0e22241 100644
 3--- a/Makefile
 4+++ b/Makefile
 5@@ -1,5 +1,5 @@
 6-COMMIT := $(shell git rev-parse --short HEAD)
 7-LDFLAGS := "-X 'git.gabrielgio.me/cerrado/templates.Slug=.$(COMMIT)' -s -w"
 8+SLUG ?= $(shell git rev-parse --short HEAD)
 9+LDFLAGS := "-X 'git.gabrielgio.me/cerrado/templates.Slug=.$(SLUG)' -s -w"
10 
11 build: sass-slug tmpl
12 	go build \
13@@ -17,7 +17,7 @@ sass-slug:
14 	mkdir -p static
15 	sassc \
16 		--style compressed \
17-		-I scss scss/main.scss static/main.$(COMMIT).css
18+		-I scss scss/main.scss static/main.$(SLUG).css
19 
20 sass:
21 	mkdir -p static