We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74654c commit a03f77eCopy full SHA for a03f77e
firmware/generator.py
@@ -42,7 +42,7 @@ def sha2(file_path):
42
43
# Runs arduino-cli
44
def arduino_cli(cli_path, args=[]):
45
- res = subprocess.run([cli_path, *args], capture_output=True, text=True)
+ res = subprocess.run([cli_path, *args], capture_output=True, text=True, check=True)
46
return res.stdout, res.stderr
47
48
def provision_binary_details(board):
0 commit comments