mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-07 16:19:02 +02:00
2a8e2efe62
[misc] faster web ci GitOrigin-RevId: bbd6b12040956f6b397c6ea4d8144e733299400b
13 lines
345 B
Bash
Executable File
13 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
|
|
npm install git+https://github.com/sharelatex/translations-sharelatex.git#master & TRANSLATIONS=$!
|
|
|
|
npm run webpack:production & WEBPACK=$!
|
|
|
|
echo "Waiting for translations and minify to finish"
|
|
|
|
wait $TRANSLATIONS && echo "Translations install complete" || exit 1
|
|
wait $WEBPACK && echo "Webpack complete" || exit 1
|
|
|
|
rm .sentryclirc
|