You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/app-service/azure.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,12 @@ services:
13
13
prepackage:
14
14
windows:
15
15
shell: pwsh
16
-
run: cd ../frontend;npm install;npm run build; cp -r ./build/* ../backend/src/main/resources/static
16
+
run: cd ../frontend;npm install;npm run build; if not exist ./backend/src/main/resources/static mkdir ./backend/src/main/resources/static; cp -r ./build/* ../backend/src/main/resources/static
17
17
interactive: true
18
18
continueOnError: false
19
19
posix:
20
20
shell: sh
21
-
run: cd ../frontend;npm install;npm run build; cp -r ./build/* ../backend/src/main/resources/static
21
+
run: cd ../frontend;npm install;npm run build; mkdir -p ../backend/src/main/resources/static; cp -r ./build/* ../backend/src/main/resources/static
0 commit comments