From 192cc2c0e7520632738007b8acd66924dacb160c Mon Sep 17 00:00:00 2001 From: Roman Popat Date: Sat, 20 Sep 2025 20:25:58 +0100 Subject: [PATCH] corrected quoting pattern on predeploy scripts --- bs3-functions/firebase.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/bs3-functions/firebase.json b/bs3-functions/firebase.json index 4a03264..ae3ad12 100644 --- a/bs3-functions/firebase.json +++ b/bs3-functions/firebase.json @@ -5,11 +5,7 @@ }, "hosting": { "public": "build", - "ignore": [ - "firebase.json", - "**/.*", - "**/node_modules/**" - ], + "ignore": ["firebase.json", "**/.*", "**/node_modules/**"], "rewrites": [ { "source": "**", @@ -30,8 +26,8 @@ ], "runtime": "nodejs22", "predeploy": [ - "yarn --cwd "$RESOURCE_DIR" lint", - "yarn --cwd "$RESOURCE_DIR" build" + "yarn --cwd \"$RESOURCE_DIR\" lint", + "yarn --cwd \"$RESOURCE_DIR\" build" ] } ],