mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-23 14:00:08 +02:00
14 lines
341 B
Bash
Executable file
14 lines
341 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 && node scripts/flush_all.js
|
|
|
|
echo "Done flushing all project-history changes"
|