1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 23:38:06 +02:00

Fix config checks in 'up'

This commit is contained in:
Shane Kilkelly 2020-06-11 15:34:09 +01:00
parent 2718455347
commit 3ab5e5a6a8

2
bin/up
View file

@ -3,7 +3,7 @@
set -euo pipefail
function check_config() {
if [[ ! -f config/docker-compose.yml ]] || [[ ! -f config/local.yml ]]; then
if [[ ! -f config/overleaf.rc ]] || [[ ! -f config/variables.env ]]; then
echo "Config files not found! exiting"
exit 1
fi