Reduce unnecessary build output.

This commit is contained in:
Ryan Dahl 2018-07-16 22:40:42 -04:00
parent ed9acaec7d
commit d78254009e
3 changed files with 5 additions and 3 deletions

View file

@ -4,8 +4,9 @@ import os
import subprocess
def run(args):
print " ".join(args)
def run(args, quiet=False):
if not quiet:
print " ".join(args)
env = os.environ.copy()
if os.name == "nt":
# Run through shell to make .bat/.cmd files work.