birdfont icon indicating copy to clipboard operation
birdfont copied to clipboard

verbose build mode

Open vapier opened this issue 9 years ago • 1 comments
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 ?

vapier avatar May 18 '16 15:05 vapier

Thank you, I will look at it. Some type of verbose mode sounds like a bright idea.

johanmattssonm avatar May 18 '16 18:05 johanmattssonm