From 2639e192ea352f67125768d348e7c44fcd189ec6 Mon Sep 17 00:00:00 2001 From: Vinicius Tosta Date: Thu, 18 Jan 2024 18:34:01 -0300 Subject: [PATCH] update entrypoint script Signed-off-by: Vinicius Tosta --- entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 3070503c..8f3d2204 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,5 +1,7 @@ #!/bin/bash +npm install + cd functions; npm install if [ -z "${FIREBASE_TOKEN}" ]; then @@ -12,6 +14,8 @@ if [ -z "${FIREBASE_PROJECT}" ]; then exit 1 fi +cd .. + firebase experiments:enable webframeworks firebase deploy \