Skip to content

Commit

Permalink
espidf: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp v. K committed Mar 11, 2022
1 parent 943d0a2 commit f4df8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlonmcu/platform/espidf.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def _monitor_helper(*args, verbose=False, start_match=None, end_match=None, time
+ " ".join([str(arg) for arg in args])
)
process = subprocess.Popen(
cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, executable="bin/bash", env=env
cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True, executable="/bin/bash", env=env
)
try:
exit_code = None
Expand Down

0 comments on commit f4df8f6

Please sign in to comment.