lockbox

password manager
Log | Files | Refs | README | LICENSE

commit 80589eb1862939ff6cacc3a05770cb11199d583e
parent 0263d79f605e38d2a3399c9cc0d44546133f407d
Author: Sean Enck <sean@ttypty.com>
Date:   Tue, 20 Jan 2026 16:50:36 -0500

remove wrapper

Diffstat:
M.ci.sh | 13+++----------
1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/.ci.sh b/.ci.sh @@ -1,11 +1,4 @@ #!/bin/sh -e -ENGINE=podman -[ -n "$CONTAINER_ENGINE" ] && ENGINE="$CONTAINER_ENGINE" - -_ci() { - "$ENGINE" run --rm -v "$PWD:/app" -w /app golang:latest sh -c "make $1" -} - -_ci "" -_ci "check" -_ci "releases" +make +make check +make releases