lockbox

password manager
Log | Files | Refs | README | LICENSE

commit ac7ae8065c02038d9d131e107aaea0e06e230c0f
parent 3fd67c48f922889f2b6a325cd4c47f343b0a3cfa
Author: Sean Enck <sean@ttypty.com>
Date:   Tue, 20 Jul 2021 19:17:30 -0400

flags for repro nowadays

Diffstat:
Mcmd/lb/main.go | 2+-
Mconfigure | 2+-
Mversion.sh | 2--
3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/cmd/lb/main.go b/cmd/lb/main.go @@ -114,7 +114,7 @@ func main() { fmt.Println(f) } case "version": - fmt.Printf("version:\n %s\nbuilt:\n %s\n", internal.Version, internal.BuiltOn) + fmt.Printf("version:\n %s\n", internal.Version) case "insert": multi := false idx := 2 diff --git a/configure b/configure @@ -56,7 +56,7 @@ _generate() { binapps+=($BIN_PATH$app) done echo "# Autogenerated file -FLAGS := -ldflags '-linkmode external -extldflags \$(LDFLAGS) -w' -trimpath -buildmode=pie -mod=readonly -modcacherw +FLAGS := -trimpath -buildmode=pie -mod=readonly -modcacherw all: prep ${binapps[@]} diff --git a/version.sh b/version.sh @@ -5,8 +5,6 @@ VERS_NAME="Version" _version_info() { echo "// Version is the hash/version info for lb" git log -n 1 --format=%h | sed 's/^/'$VERS_NAME' = "/g;s/$/"/g' - echo "// BuiltOn is the date lb was built" - date "+%Y-%m-%dT%H:%M%S" | sed 's/^/BuiltOn = "/g;s/$/"/g' } _version() {