diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-27 23:35:47 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-27 23:35:47 +0800 |
commit | cac5be21a06bad465a8ff06aa691e6d3c0b29475 (patch) | |
tree | cbfe15f0ad71903e971fab972c3c21f4ad7ef4bd | |
parent | Lint and add CI (diff) | |
download | forge-cac5be21a06bad465a8ff06aa691e6d3c0b29475.tar.gz forge-cac5be21a06bad465a8ff06aa691e6d3c0b29475.tar.zst forge-cac5be21a06bad465a8ff06aa691e6d3c0b29475.zip |
Attempt to fix that lint issue
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ forge: $(filter-out forge,$(wildcard *)) version.go hookc/*.c hookc/hookc hookc/hookc: version.go: - printf 'package main\nconst VERSION="%s"\n' $(shell git describe --tags --always --dirty) > $@ + printf 'package main\nconst VERSION = "%s"\n' $(shell git describe --tags --always --dirty) > $@ clean: $(RM) forge version.go vendor |