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

Merge branch '20190709-rename-binary-to-wtfutil'

This commit is contained in:
Chris Cummer 2019-07-10 08:09:19 -07:00
commit f143efe4e2
2 changed files with 12 additions and 4 deletions

View File

@ -21,7 +21,7 @@ export GO111MODULE = on
export GOPROXY = https://gocenter.io
build:
go build -o bin/wtf
go build -o bin/wtfutil
contrib_check:
npx all-contributors-cli check
@ -29,17 +29,21 @@ contrib_check:
install:
@go clean
@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:
structcheck ./...
varcheck ./...
run: build
bin/wtf
bin/wtfutil
size:
loc --exclude _sample_configs/ _site/ docs/ Makefile *.md
test: build
go test ./...
uninstall:
@rm ~/go/bin/wtfutil

View File

@ -51,14 +51,18 @@ func (widget *Widget) Refresh() {
title := widget.CommonSettings().Title
title = title + widget.sinceDateForTitle()
var wrap bool
var content string
if err != nil {
wrap = true
content = err.Error()
} else {
wrap = false
content = widget.contentFrom(data)
}
widget.Redraw(title, content, false)
widget.Redraw(title, content, wrap)
}
/* -------------------- Unexported Functions -------------------- */