mirror of
https://github.com/go-i2p/gitlab-to-gitea.git
synced 2025-06-16 22:10:44 -04:00
14 lines
229 B
Makefile
14 lines
229 B
Makefile
|
|
fmt:
|
|
@echo "Running gofumpt..."
|
|
find . -name '*.go' -exec gofumpt -w -s -extra {} \;
|
|
|
|
migrate:
|
|
go build -o migrate ./cmd/migrate
|
|
|
|
unmigrate:
|
|
go build -o unmigrate ./cmd/unmigrate
|
|
|
|
forkfix:
|
|
go build -o forkfix ./cmd/forkfix
|