mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-27 19:11:06 +00:00
Merge pull request #1646 from sharelatex/ho-fail-lint
Remove `set -e` from build process and wait for each previous task GitOrigin-RevId: 4ece4b70c729e8de654adae0053fdb28f0f86799
This commit is contained in:
parent
5de25032d8
commit
27251bc1ac
1 changed files with 1 additions and 3 deletions
4
services/web/install_deps.sh
Normal file → Executable file
4
services/web/install_deps.sh
Normal file → Executable file
|
@ -1,12 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
WEBPACK_ENV=production make minify &
|
||||
make --no-print-directory format &
|
||||
make --no-print-directory lint &
|
||||
npm install git+https://github.com/sharelatex/translations-sharelatex.git#master &
|
||||
wait -n
|
||||
wait -n && wait -n && wait -n && wait -n
|
||||
|
||||
chmod -R 0755 /app/public
|
||||
chown -R node:node /app/public
|
||||
|
|
Loading…
Reference in a new issue