commit b62042b2358a726930bf02c319de027459e17b64 parent 4e8429cc8193f3cfae22d783c663fab714e8e34e Author: Sean Enck <sean@ttypty.com> Date: Fri, 15 Jul 2022 19:29:28 -0400 moving bash completions to direct file Diffstat:
| M | Makefile | | | 2 | +- |
| D | cmd/lb-bash/main.go | | | 15 | --------------- |
| R | cmd/lb-bash/completions.bash -> libs/completions.bash | | | 0 |
3 files changed, 1 insertion(+), 16 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ VERSION := development DESTDIR := BUILD := bin/ -TARGETS := $(BUILD)lb $(BUILD)lb-rw $(BUILD)lb-bash $(BUILD)lb-rekey $(BUILD)lb-textconv $(BUILD)lb-totp +TARGETS := $(BUILD)lb $(BUILD)lb-rw $(BUILD)lb-rekey $(BUILD)lb-textconv $(BUILD)lb-totp LIBEXEC := $(DESTDIR)libexec/lockbox/ MAIN := $(DESTDIR)bin/lb diff --git a/cmd/lb-bash/main.go b/cmd/lb-bash/main.go @@ -1,15 +0,0 @@ -package main - -import ( - _ "embed" - "fmt" -) - -var ( - //go:embed completions.bash - completions string -) - -func main() { - fmt.Println(completions) -} diff --git a/cmd/lb-bash/completions.bash b/libs/completions.bash