Fix Makefile.

This commit is contained in:
2025-03-10 16:54:06 +02:00
parent 658c5f5471
commit a823f5abc3
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@
**/*~
/.idea
/.goroot
/dist/**
/blacklist.txt
/check.sh
/debug.sh

View File

@@ -4,7 +4,7 @@ export PATH := $(PATH)
all: fmt lintfix tidy test clean build
clean:
rm -f ./gemini-grc
rm -f ./dist && mkdir ./dist
debug:
@echo "PATH: $(PATH)"
@@ -35,7 +35,7 @@ lintfix: fmt
golangci-lint run --fix
build:
go build -race -o gemini-grc ./main.go
CGO_ENABLED=0 go build -o ./dist/gemini-grc ./main.go
show-updates:
go list -m -u all