diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2018-12-04 18:19:44 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2018-12-04 18:20:51 -0800 |
| commit | b0da9ac780a2e65344ed939e84c920b6897d6019 (patch) | |
| tree | dbe065c5d639fd29229b5a0ac7b4863a4b209f49 /tools/build_release_files.py | |
| parent | b25bf062fb963284a26db9bdc46d0c00c7e869ab (diff) | |
Don't capture output
Diffstat (limited to 'tools/build_release_files.py')
| -rwxr-xr-x | tools/build_release_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_release_files.py b/tools/build_release_files.py index a3b91c331..b01d4b8ea 100755 --- a/tools/build_release_files.py +++ b/tools/build_release_files.py @@ -6,7 +6,7 @@ import build_board_info as build_info import time for port in build_info.SUPPORTED_PORTS: - result = subprocess.run("rm -rf ../ports/{}/build*".format(port), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True) + result = subprocess.run("rm -rf ../ports/{}/build*".format(port), shell=True) ROSIE_SETUPS = ["rosie-ci"] rosie_ok = {} |
