1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Changes the name of the installed binary from 'wtf' to 'wtfutil'

This is to avoid conflict with the venerable 'wtf' acronym utility found
here https://sourceforge.net/projects/bsdwtf/
This commit is contained in:
Chris Cummer 2019-07-09 12:10:35 -07:00
parent 135518a341
commit b4e3b7e3a2

View File

@ -21,7 +21,7 @@ export GO111MODULE = on
export GOPROXY = https://gocenter.io export GOPROXY = https://gocenter.io
build: build:
go build -o bin/wtf go build -o bin/wtfutil
contrib_check: contrib_check:
npx all-contributors-cli check npx all-contributors-cli check
@ -29,17 +29,21 @@ contrib_check:
install: install:
@go clean @go clean
@go install -ldflags="-s -w -X main.version=$(shell git describe --always --abbrev=6) -X main.date=$(shell date +%FT%T%z)" @go install -ldflags="-s -w -X main.version=$(shell git describe --always --abbrev=6) -X main.date=$(shell date +%FT%T%z)"
@which wtf || echo "Could not find wtf in PATH" && exit 0 @mv ~/go/bin/wtf ~/go/bin/wtfutil
@which wtfutil || echo "Could not find wtfutil in PATH" && exit 0
lint: lint:
structcheck ./... structcheck ./...
varcheck ./... varcheck ./...
run: build run: build
bin/wtf bin/wtfutil
size: size:
loc --exclude _sample_configs/ _site/ docs/ Makefile *.md loc --exclude _sample_configs/ _site/ docs/ Makefile *.md
test: build test: build
go test ./... go test ./...
uninstall:
@rm ~/go/bin/wtfutil