mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 15:10:48 +02:00
678d6809b9
GitOrigin-RevId: 2fbfe1ae33b42a5a9a696be811d122882093cd49
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"
|