From 86516421b5bf0ac5e890f9ce611009372b0c992b Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Tue, 2 Nov 2021 07:01:48 +0530 Subject: [PATCH] fix(ci): run build command from root --- firebase.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebase.json b/firebase.json index 9be139b44..4b823a6f3 100644 --- a/firebase.json +++ b/firebase.json @@ -5,7 +5,7 @@ }, "hosting": { "predeploy": [ - "cd packages/hoppscotch-app && mv .env.example .env && npm install -g pnpm && pnpm i && pnpm run generate" + "cd packages/hoppscotch-app && mv .env.example .env && cd ../.. && npm install -g pnpm && pnpm i && pnpm run generate" ], "public": "packages/hoppscotch-app/dist", "ignore": ["firebase.json", "**/.*", "**/node_modules/**"],