mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 02:00:10 +02:00
[misc] another batch of CI improvements GitOrigin-RevId: 470fd762ba541d5dce92f0e99830fb2fd8fc4747
11 lines
328 B
Bash
Executable File
11 lines
328 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
|