mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
15 lines
364 B
Bash
Executable File
15 lines
364 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
echo "---------------------------------"
|
|
echo "Flush all project-history changes"
|
|
echo "---------------------------------"
|
|
date
|
|
|
|
source /etc/container_environment.sh
|
|
source /etc/overleaf/env.sh
|
|
cd /overleaf/services/project-history && /sbin/setuser www-data node scripts/flush_all.js
|
|
|
|
echo "Done flushing all project-history changes"
|