From 266ce00d33a57e1a1ddc518ffce7dd41f3781d58 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Fri, 20 Jan 2023 17:28:57 -0800 Subject: [PATCH] Add output during build on launch Signed-off-by: James Ketrenos --- entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 7a6b624..0877504 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -31,18 +31,22 @@ if [[ -z "${DEVELOPMENT}" ]]; then else echo "Running in DEVELOPMENT mode." if [[ ! -d /website/frontend/bower_components ]]; then + echo "...installing bower_components for frontend" cd /website/frontend npx -y bower --allow-root -y install || fail "Unable to install frontend" fi if [[ ! -d /website/client/node_modules ]]; then + echo "...installing node_modules for client" cd /website/client npm install || fail "Unable to install client" fi if [[ ! -d /website/node_modules ]]; then + echo "...installing node_modules for base website" cd /website npm install || fail "Unable to install website" fi if [[ ! -d /website/server/node_modules ]]; then + echo "...installing node_modules for server" cd /website/server npm install || fail "Unable to install server" fi