Skip to content

Commit 254ab55

Browse files
committed
stop check=True which throws a CaughtProcessException
1 parent b8325e9 commit 254ab55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def manually_install_esp32_bsp(repo_info):
115115
# Assemble git url
116116
repo_url = "git clone -b {0} https://github.com/{1}/arduino-esp32.git esp32".format(repo_info.split("/")[1], repo_info.split("/")[0])
117117
# Locally clone repo (https://docs.espressif.com/projects/arduino-esp32/en/latest/installing.html#linux)
118-
subprocess_result = subprocess.run("mkdir -p /home/runner/Arduino/hardware/espressif", shell=True, check=True)
118+
subprocess_result = subprocess.run("mkdir -p /home/runner/Arduino/hardware/espressif", shell=True)
119119
if subprocess_result.returncode != 0:
120120
ColorPrint.print_fail("Failed to create ESP32 Arduino BSP directory!\n" +
121121
"Maybe the runner work location changed?\n" +

0 commit comments

Comments
 (0)