From 8b625ba5438d4274bfde6ff4ebf7bc522fd17000 Mon Sep 17 00:00:00 2001 From: Romain Goffe Date: Wed, 18 Jan 2012 20:24:26 +0100 Subject: [PATCH] Windows: explicitly call python interpreter to avoid windows pop-ups --- windows/make.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/make.bat b/windows/make.bat index 5726874c..1f4325a7 100644 --- a/windows/make.bat +++ b/windows/make.bat @@ -1,12 +1,12 @@ Rem build tex file from songbook file -songbook.py --songbook=books\%1.sb --output=%1.tex +python songbook.py --songbook=books\%1.sb --output=%1.tex Rem 1st pdf compilation pdflatex %1.tex Rem build indexes -songbook-makeindex.py %1_title.sxd > %1_title.sbx -songbook-makeindex.py %1_auth.sxd > %1_auth.sbx +python songbook-makeindex.py %1_title.sxd > %1_title.sbx +python songbook-makeindex.py %1_auth.sxd > %1_auth.sbx Rem 2nd compilation to include indexes pdflatex %1.tex