mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
48b138f227
[misc] another batch of CI improvements GitOrigin-RevId: 470fd762ba541d5dce92f0e99830fb2fd8fc4747
10 lines
328 B
Bash
Executable file
10 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
|