From 4c5ca3b1d6351225cda9c98757aaf536d9345ee9 Mon Sep 17 00:00:00 2001 From: Ryan Reece Date: Fri, 12 Jan 2024 16:06:19 -0800 Subject: [PATCH] windows ci --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d1f5311..e733127 100644 --- a/Makefile +++ b/Makefile @@ -234,14 +234,14 @@ install_for_windows: if [ ! -f /usr/local/bin/pdflatex ]; then \ echo "Installing texlive..." ; \ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-windows.exe ; \ - cmd /u /c "install-tl-windows -no-interaction -no-gui -v -no-cls" ; \ + install-tl-windows -no-interaction -no-gui -v -no-cls ; \ 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 ; \ - cmd /u /c "unzip pandoc-2.13-windows-x86_64.zip" ; \ - cmd /u /c "ls ." ; \ + unzip pandoc-2.13-windows-x86_64.zip ; \ + ls ; \ fi ; \ echo "which pandoc: `which pandoc`" ; \ pandoc --version ; \