diff --git a/selfdrive/carrot/carrot_man.py b/selfdrive/carrot/carrot_man.py index 726f3b4..bdf4ee3 100644 --- a/selfdrive/carrot/carrot_man.py +++ b/selfdrive/carrot/carrot_man.py @@ -632,6 +632,7 @@ class CarrotMan: elif 'echo_cmd' in json_obj: try: result = subprocess.run(json_obj['echo_cmd'], shell=True, capture_output=True, text=False) + exitStatus = result.returncode try: stdout = result.stdout.decode('utf-8') stderr = result.stderr.decode('utf-8')