commit b198c325177398ec7cfa8ead1ed1184a0e66c7e9 parent 138a85c4b7d846ef5e9983d65445e0b49c219056 Author: Sean Enck <sean@ttypty.com> Date: Tue, 20 Jan 2026 17:23:09 -0500 remove wrapper Diffstat:
| M | .ci.sh | | | 11 | +++-------- |
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/.ci.sh b/.ci.sh @@ -1,9 +1,4 @@ #!/bin/sh -e -ENGINE=podman -[ -n "$CONTAINER_ENGINE" ] && ENGINE="$CONTAINER_ENGINE" - -_ci() { - "$ENGINE" run --rm -v "$PWD:/app" -w /app alpine:latest sh -c "cd plugins/hphp && apk add make minify zip && make $1" -} - -_ci "CI=1" +cd plugins/hphp && \ + apk add make minify zip && \ + make CI=1