From b0da9ac780a2e65344ed939e84c920b6897d6019 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Tue, 4 Dec 2018 18:19:44 -0800 Subject: [PATCH] Don't capture output --- tools/build_release_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_release_files.py b/tools/build_release_files.py index a3b91c3310..b01d4b8ea7 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 = {}