From acac3dbadf3fc9762d27e11c92ef917383a30db6 Mon Sep 17 00:00:00 2001 From: matiusz Date: Tue, 28 Nov 2023 16:47:23 +0100 Subject: [PATCH] code: revert changes --- .circleci/config.yml | 6 ------ src/TeXcompile.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e1f147c..a80b13c5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,12 +7,6 @@ jobs: working_directory: /app steps: - checkout - - run: - name: Update Apt - command: apt-get update - - run: - name: Update Apt - command: apt-get upgrade -y --allow-downgrades --allow-remove-essential --allow-change-held-packages - run: name: Update MiKTeX command: initexmf --admin --set-config-value=[MPM]AutoInstall=1 && mpm --admin --update-db && initexmf --admin --update-fndb # buildkit diff --git a/src/TeXcompile.py b/src/TeXcompile.py index 77545588..ad9e1301 100644 --- a/src/TeXcompile.py +++ b/src/TeXcompile.py @@ -14,7 +14,7 @@ def main(): songbookTitle = config.outputFile inFile = f"{songbookTitle}.tex" outFile = f"{songbookTitle}.pdf" - texcompile = f"pdflatex --initialize --interaction=nonstopmode {inFile}" + texcompile = f"pdflatex {inFile}" logger.info(f"Compiling {inFile} to {outFile}") if os.system(texcompile) != 0: logger.error("Command pdflatex exited with error")