Browse Source

Disable parallel execution of commands causing race condition between mkdir and cp (#3052)

pull/3053/head
Søren Bjergmark 1 year ago
committed by GitHub
parent
commit
a8d557eb1b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      apps/api/project.json
  2. 3
      apps/client/project.json

3
apps/api/project.json

@ -46,7 +46,8 @@
{ {
"command": "shx cp -r apps/client/src/locales/* dist/apps/api/assets/locales" "command": "shx cp -r apps/client/src/locales/* dist/apps/api/assets/locales"
} }
] ],
"parallel": false
} }
}, },
"serve": { "serve": {

3
apps/client/project.json

@ -149,7 +149,8 @@
{ {
"command": "shx cp LICENSE dist/apps/client/assets" "command": "shx cp LICENSE dist/apps/client/assets"
} }
] ],
"parallel": false
} }
}, },
"serve": { "serve": {

Loading…
Cancel
Save