From b29e5e92523df4d7ef51eb30fd1f5b7e47c2e2c9 Mon Sep 17 00:00:00 2001 From: nyanpasu64 Date: Fri, 4 Jan 2019 02:18:53 -0800 Subject: [PATCH] Set pyinstaller --log-level DEBUG --- appveyor.yml | 2 +- build_pyinstaller.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 65116e0..d53abe0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -50,7 +50,7 @@ after_test: # Running pyinstaller is much faster on x64 I think, # but the resulting files are 64-bit only. - 'poetry build' - - 'poetry run pyinstaller corrscope.spec -y' + - 'poetry run pyinstaller corrscope.spec -y --log-level DEBUG' artifacts: - path: 'dist\*' diff --git a/build_pyinstaller.py b/build_pyinstaller.py index 1a28546..d2e43ca 100644 --- a/build_pyinstaller.py +++ b/build_pyinstaller.py @@ -4,7 +4,7 @@ import sys # To write graph, pass --log-level=DEBUG # pyinstaller corrscope/__main__.py --name corrscope -y -args = "pyinstaller corrscope.spec -y".split() + sys.argv[1:] +args = "pyinstaller corrscope.spec -y --log-level DEBUG".split() + sys.argv[1:] subprocess.run(args) subprocess.run("dist/corrscope/corrscope".split())