1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-04-25 19:15:01 +02:00
This commit is contained in:
firefart 2022-10-08 18:51:28 +02:00
parent 36166efaea
commit a55d34a33d

View File

@ -33,3 +33,9 @@ lint:
lint-update:
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $$(go env GOPATH)/bin
$$(go env GOPATH)/bin/golangci-lint --version
.PHONY: tag
tag:
@[ "${TAG}" ] && echo "Tagging a new version ${TAG}" || ( echo "TAG is not set"; exit 1 )
git tag -a "${TAG}" -m "${TAG}"
git push origin "${TAG}"