From 9bc9e7e7db4c0fa2313e0c86d55c5290fe786ae3 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Wed, 19 Nov 2025 18:37:01 -0300 Subject: [PATCH] chore: install node/openssl with apt-get output (runtime) --- scripts/start-web.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/start-web.sh b/scripts/start-web.sh index 15bb091..714335a 100644 --- a/scripts/start-web.sh +++ b/scripts/start-web.sh @@ -19,13 +19,13 @@ echo "[start-web] NEXT_PUBLIC_CONVEX_URL=${NEXT_PUBLIC_CONVEX_URL:-}" if command -v apt-get >/dev/null 2>&1; then if ! command -v openssl >/dev/null 2>&1; then echo "[start-web] openssl not found; installing via apt-get (requires root)" - apt-get update -y >/dev/null 2>&1 || true - apt-get install -y openssl >/dev/null 2>&1 || true + apt-get update -y || true + apt-get install -y openssl || true fi if ! command -v node >/dev/null 2>&1; then echo "[start-web] node not found; installing via apt-get (requires root)" - apt-get update -y >/dev/null 2>&1 || true - apt-get install -y nodejs npm >/dev/null 2>&1 || true + apt-get update -y || true + apt-get install -y nodejs npm || true fi else echo "[start-web] apt-get unavailable; skipping system deps install" >&2