From 0b5c6315e2d42ddd5083ff561e76788916530314 Mon Sep 17 00:00:00 2001 From: Fifo F Date: Sat, 7 Sep 2024 09:24:09 +0200 Subject: [PATCH] Fix TL install checks Signed-off-by: Fifo F <34-fifo@users.noreply.git.fifo-f.eu> --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84a5140..93ff7b4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ build: echo "Image version: $OVERLEAF_VERSION" docker pull sharelatex/sharelatex:latest docker run --name temp --entrypoint /bin/bash sharelatex/sharelatex:latest -c "\ - if [ ! -d /usr/local/texlive ]; then \ + if ! tlmgr info scheme-full | grep -q 'installed:[[:space:]]*Yes'; then \ tlmgr option repository $TEXLIVE_REPO && \ tlmgr install scheme-full && \ tlmgr path add; \