overleaf/services/web/install_deps.sh
Simon Detheridge f762fd1d16 Merge pull request #2784 from overleaf/jpa-drop-sentry-rc
[misc] drop the clear text sentry cli config

GitOrigin-RevId: ef3909fe4bf02e42ad29f2c13de843fe7ac2f5a3
2020-05-02 03:19:22 +00:00

16 lines
539 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
rm .sentryclirc