Skip to content

Commit

Permalink
suppress output from compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
samschott committed Jul 7, 2024
1 parent a29f2ca commit 2f5d998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/post-build-macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
print("# ==== prune py files and replace with pyc ==============================")

print("compiling py -> pyc")
compileall.compile_dir(str(RESOURCE_PATH), optimize=2, ddir="", legacy=True)
compileall.compile_dir(str(RESOURCE_PATH), optimize=2, ddir="", legacy=True, quiet=1)

print("removing py files")
for path in RESOURCE_PATH.glob("**/*.py"):
Expand Down

0 comments on commit 2f5d998

Please sign in to comment.