Skip to content

Commit

Permalink
windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rreece committed Jan 13, 2024
1 parent 1920e92 commit 4655d35
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -234,24 +234,24 @@ install_for_windows:
if [ ! -f /usr/local/bin/pdflatex ]; then \
echo "Installing texlive..." ; \
choco install texlive ; \
fi ; \
echo "which pdflatex: `which pdflatex`" ; \
fi ;
@echo "which pdflatex: `which pdflatex`" ; \
if [ ! -f /usr/local/bin/pandoc ]; then \
echo "Installing pandoc..." ; \
wget https://github.com/jgm/pandoc/releases/download/2.13/pandoc-2.13-windows-x86_64.zip ; \
unzip pandoc-2.13-windows-x86_64.zip ; \
ls ; \
fi ; \
echo "which pandoc: `which pandoc`" ; \
fi ;
@echo "which pandoc: `which pandoc`" ; \
pandoc --version ; \
if [ ! -f /usr/local/bin/pandoc-crossref ]; then \
echo "Installing pandoc-crossref..." ; \
wget -c https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.10.0a/pandoc-crossref-Windows.7z ; \
tar -xf pandoc-crossref-macOS.tar.xz ; \
sudo mv pandoc-crossref /usr/local/bin/ ; \
sudo chmod a+x /usr/local/bin/pandoc-crossref ; \
fi ; \
echo "which pandoc-crossref: `which pandoc-crossref`" ; \
fi ;
@echo "which pandoc-crossref: `which pandoc-crossref`" ; \
if [ ! -f requirements.txt ]; then \
echo "pip installing other dependencies..." ; \
pip install --upgrade pip ; \
Expand Down

0 comments on commit 4655d35

Please sign in to comment.