mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
10 lines
156 B
Bash
10 lines
156 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cd /app
|
|
|
|
# npm run executes the same package.json scripts as pnpm run (pnpm reinstalls in deploy layout)
|
|
npm run migration:run
|
|
|
|
exec "$@"
|