From ca40d2f65cae76b067c4807c2d9019855fbe8198 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 23 Dec 2025 08:42:24 +0100 Subject: [PATCH] Fix entrypoint --- latex/entrypoint.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/latex/entrypoint.sh b/latex/entrypoint.sh index e80bba2..81d40da 100755 --- a/latex/entrypoint.sh +++ b/latex/entrypoint.sh @@ -18,9 +18,10 @@ if [ -n "$INSTALL_HELPERS" ]; then if [ "$INSTALL_HELPERS" == "true" ]; then apk add git CURR_DIR=$(pwd) - mkdir ~/projects/ + mkdir ~/projects/ || true cd ~/projects/ - git clone https://git.janishutz.com/janishutz/latex + git clone https://git.janishutz.com/janishutz/latex || true + echo "Downloaded helpers, returning to $CURR_DIR" cd "$CURR_DIR" fi fi