From 9a4055df1b42be69250ab1f9044f969f929669a0 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Sun, 14 Jun 2026 16:21:47 +0000 Subject: [PATCH] fix(installer): silence test noise, add Authelia missing reminder --- install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 61f7b93..879210c 100755 --- a/install.sh +++ b/install.sh @@ -194,7 +194,7 @@ COMMIT_SHA=$(git rev-parse --short HEAD 2>/dev/null || echo "unknown") info "Version: ${VERSION}" info "Running tests..." -go test -count=1 ./... 2>&1 | tail -2 || warn "Some tests failed — continuing" +go test -count=1 ./... 2>&1 | tail -2 || true info "Compiling..." go build -ldflags="-s -w \ @@ -458,6 +458,12 @@ $SUDO systemctl enable --now nextwks 2>/dev/null && success "NextWks is running" echo "" info " Logs: sudo journalctl -u nextwks -f" echo "" +if [ -f "${AUTHELIA_DIR}/authelia" ]; then + info " Authelia: installed and configured" +else + warn " Authelia: not installed — run scripts/install-authelia.sh or install manually" +fi +echo "" if [ -n "${ADMIN_PASS:-}" ]; then warn " ┌─────────────────────────────────────────┐" warn " │ Admin login: ${AUTH_URL}"