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")