diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-28 00:30:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-28 00:30:55 +0200 |
| commit | 5f28ab6566a4e12b802f06584ead65e640c295f1 (patch) | |
| tree | 02d3d8969f9bf5d27fbeeaf2d02b43555b26666a /platform_methods.py | |
| parent | 3edcccafd99aa76cc4fdd0585209e99189a3db55 (diff) | |
| parent | d86de6c98e435d31bfdebc50d2db6d4d4048be40 (diff) | |
| download | redot-engine-5f28ab6566a4e12b802f06584ead65e640c295f1.tar.gz | |
Merge pull request #40771 from Xrayez/scons-verbose-builders
SCons: Refactor running commands through builders
Diffstat (limited to 'platform_methods.py')
| -rw-r--r-- | platform_methods.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/platform_methods.py b/platform_methods.py index 805d7de82a..ec394d76d8 100644 --- a/platform_methods.py +++ b/platform_methods.py @@ -44,11 +44,12 @@ def run_in_subprocess(builder_function): json.dump(data, json_file, indent=2) json_file_size = os.stat(json_path).st_size - print( - "Executing builder function in subprocess: " - "module_path=%r, parameter_file=%r, parameter_file_size=%r, target=%r, source=%r" - % (module_path, json_path, json_file_size, target, source) - ) + if env["verbose"]: + print( + "Executing builder function in subprocess: " + "module_path=%r, parameter_file=%r, parameter_file_size=%r, target=%r, source=%r" + % (module_path, json_path, json_file_size, target, source) + ) try: exit_code = subprocess.call([sys.executable, module_path, json_path], env=subprocess_env) finally: |
