Hi… I am well aware that this diff view is very suboptimal. It will be fixed when the refactored server comes along!
Makefile: Make version.go a .PHONY
.PHONY: clean
.PHONY: clean version.go
forge: $(filter-out forge,$(wildcard *)) version.go go build -o $@ version.go: printf 'package main\nconst VERSION="%s"\n' $(shell git describe --tags --long --always --dirty) > $@ clean: $(RM) forge version.go