2019-02-19 09:51:34 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-03-21 07:02:12 -04:00
|
|
|
make --no-print-directory format & FORMAT=$!
|
|
|
|
make --no-print-directory lint & LINT=$!
|
|
|
|
npm install git+https://github.com/sharelatex/translations-sharelatex.git#master & TRANSLATIONS=$!
|
2019-10-16 06:10:54 -04:00
|
|
|
|
|
|
|
npm run webpack:production & WEBPACK=$!
|
2019-03-21 07:02:12 -04:00
|
|
|
|
|
|
|
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
|
2019-10-16 06:10:54 -04:00
|
|
|
wait $WEBPACK && echo "Webpack complete" || exit 1
|