mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
Reduce unnecessary build output.
This commit is contained in:
parent
ed9acaec7d
commit
d78254009e
3 changed files with 5 additions and 3 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue