Skip to content

Commit

Permalink
Fix Eisvogel template download
Browse files Browse the repository at this point in the history
  • Loading branch information
tarleb committed Oct 25, 2024
1 parent d10f53e commit ebeb9f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions alpine/extra/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ RUN mkdir -p $TEMPLATES_DIR

# eisvogel
ARG EISVOGEL_REPO=https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template
ARG EISVOGEL_VERSION=2.5.0
RUN wget ${EISVOGEL_REPO}/${EISVOGEL_VERSION}/eisvogel.tex \
ARG EISVOGEL_VERSION=v2.5.0
RUN wget ${EISVOGEL_REPO}/refs/tags/${EISVOGEL_VERSION}/eisvogel.tex \
-O ${TEMPLATES_DIR}/eisvogel.latex

# Lua filters
Expand Down
4 changes: 2 additions & 2 deletions ubuntu/extra/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ RUN mkdir -p $TEMPLATES_DIR

# eisvogel
ARG EISVOGEL_REPO=https://raw.githubusercontent.com/Wandmalfarbe/pandoc-latex-template
ARG EISVOGEL_VERSION=2.5.0
RUN wget ${EISVOGEL_REPO}/${EISVOGEL_VERSION}/eisvogel.tex \
ARG EISVOGEL_VERSION=v2.5.0
RUN wget ${EISVOGEL_REPO}/refs/tags/${EISVOGEL_VERSION}/eisvogel.tex \
-O ${TEMPLATES_DIR}/eisvogel.latex

# Lua Filters
Expand Down

0 comments on commit ebeb9f7

Please sign in to comment.