fix typo in Makefile

This commit is contained in:
Balakrishnan Balasubramanian 2023-04-05 11:33:02 -04:00
parent 6f111a42e9
commit 107d90deb8

View File

@ -2,8 +2,11 @@
VERSION = $(shell git describe --tags --abbrev=0)
build_release:
CGO_ENABLED=0 go build -buildmode=pie -ldflags "-X main.version=$(VERSION)" -o tglistbot-$(VERSION)
CGO_ENABLED=0 go build -buildmode=pie -ldflags "-X main.Version=$(VERSION)" -o tglistbot-$(VERSION)
release_check:
go list -m go.balki.me/tglistbot@$(VERSION)
clean:
rm -i tglistbot* || true