mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 19:41:33 +02:00
Build changes required for passing secrets into docker build GitOrigin-RevId: 46c221bd0f0e3ec4ec02384afb252c532d688516
15 lines
522 B
Bash
Executable File
15 lines
522 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make --no-print-directory format & FORMAT=$!
|
|
make --no-print-directory lint & LINT=$!
|
|
npm install git+https://github.com/sharelatex/translations-sharelatex.git#master & TRANSLATIONS=$!
|
|
|
|
npm run webpack:production & WEBPACK=$!
|
|
|
|
echo "Waiting for lint, format, translations and minify to finish"
|
|
|
|
wait $LINT && echo "Lint complete" || exit 1
|
|
wait $FORMAT && echo "Format complete" || exit 1
|
|
wait $TRANSLATIONS && echo "Translations install complete" || exit 1
|
|
wait $WEBPACK && echo "Webpack complete" || exit 1
|