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

bin/up: pull TeX Live images before starting up

This commit is contained in:
Jakob Ackermann 2024-05-27 15:32:53 +01:00
parent ca2b2fb2fb
commit 91851d8887
No known key found for this signature in database
GPG key ID: 30C56800FCA3828A
4 changed files with 40 additions and 1 deletions

View file

@ -125,3 +125,9 @@ function check_sharelatex_env_vars() {
fi
fi
}
function read_variable() {
local name=$1
grep -E "^$name=" "$TOOLKIT_ROOT/config/variables.env" \
| sed -r "s/^$name=([\"']*)(.+)\1*\$/\2/"
}