From 6618d7b616d2f682e590c6960db08a208ba5a8ea Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Mon, 22 Jul 2024 20:11:29 +0000 Subject: [PATCH 1/2] Fix azd up --- azure.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure.yaml b/azure.yaml index 1d65f443..29042ebb 100644 --- a/azure.yaml +++ b/azure.yaml @@ -12,12 +12,12 @@ services: prepackage: windows: shell: pwsh - run: cd frontend;npm install;npm run build + run: cd src/frontend;npm install;npm run build interactive: false continueOnError: false posix: shell: sh - run: cd frontend;npm install;npm run build + run: cd src/frontend;npm install;npm run build interactive: false continueOnError: false hooks: From 6794bf369daf2ae24f13a64747306ab538694eaf Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Mon, 22 Jul 2024 20:13:01 +0000 Subject: [PATCH 2/2] Actual fix --- azure.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure.yaml b/azure.yaml index 29042ebb..81069a73 100644 --- a/azure.yaml +++ b/azure.yaml @@ -12,12 +12,12 @@ services: prepackage: windows: shell: pwsh - run: cd src/frontend;npm install;npm run build + run: cd ../frontend;npm install;npm run build interactive: false continueOnError: false posix: shell: sh - run: cd src/frontend;npm install;npm run build + run: cd ../frontend;npm install;npm run build interactive: false continueOnError: false hooks: