mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
jq '[.[0]]' versions.json > tmp_versions.json
|
|
mv tmp_versions.json versions.json
|
|
|
|
npm i && npm run build
|
|
|
|
exec "$@"
|