Fix entrypoint

This commit is contained in:
2025-12-23 08:42:24 +01:00
parent 9c46f7eb24
commit ca40d2f65c

View File

@@ -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