02_flush_project_history 261 B

1234567891011
  1. #!/bin/sh
  2. cd /overleaf/services/project-history && node scripts/flush_all.js >> /var/log/sharelatex/project-history.log 2>&1
  3. EXIT_CODE="$?"
  4. if [ $EXIT_CODE -ne 0 ]
  5. then
  6. echo "project-history/scripts/flush_all.js failed with exit code $EXIT_CODE"
  7. fi
  8. exit 0