commit bcb8df7e4bbda1483331eaec1fca80d117ed3d0b
parent cd8c35c6a36b52c98ec1fb340577bd10965bea85
Author: Sean Enck <sean@ttypty.com>
Date: Fri, 17 Feb 2023 18:06:20 -0500
help -verbose is useful enough
Diffstat:
3 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
@@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: "deps"
- run: apk add go make git help2man
+ run: apk add go make git
- name: "build"
run: make build
- name: "check"
diff --git a/Makefile b/Makefile
@@ -3,7 +3,6 @@ BUILD := bin/
TARGET := $(BUILD)lb
TESTDIR := $(sort $(dir $(wildcard internal/**/*_test.go)))
DOC := $(BUILD)doc.text
-MAN := $(BUILD)lb.man
ACTUAL := $(BUILD)actual.log
DATE := $(shell date +%Y-%m-%d)
RUNS := -keyfile=true -keyfile=false
@@ -33,10 +32,6 @@ clean:
$(DOC): $(TARGET)
$(TARGET) help -verbose > $(DOC)
- test -s $(DOC)
-
-$(MAN): $(TARGET) $(DOC)
- help2man --include $(DOC) -h help -v version -o $(MAN) ./$(TARGET)
install:
install -Dm644 $(MAN) $(DESTDIR)share/man/man1/lb.1
diff --git a/README.md b/README.md
@@ -26,7 +26,7 @@ LOCKBOX_KEY="gpg --decrypt /Users/alice/.secrets/key.gpg"
LOCKBOX_STORE=/Users/alice/.passwords/secrets.kdbx
```
-The manpage for `lb` includes additional information about options and environment variables
+Use `lb help -verbose` for additional information about options and environment variables
## usage