birdfont
birdfont copied to clipboard
verbose build mode
trafficstars
the current build scripts are silent while they run (other than warnings). would it be possible to make it verbose ? it's possible with a simple patch:
--- a/scripts/run.py
+++ b/scripts/run.py
@@ -20,6 +20,7 @@ import subprocess
def run(cmd):
cmd = "sh -c \"" + cmd.replace ("\"", "\\\"") + "\""
+ print(cmd)
process = subprocess.Popen (cmd, shell=True)
process.communicate()[0]
if not process.returncode == 0:
or would you prefer a flag in the build script so people can opt in to verbose mode ?
Thank you, I will look at it. Some type of verbose mode sounds like a bright idea.