Skip to content

Commit

Permalink
fix(arduino-cli): remove syntax warning
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
  • Loading branch information
fpistm committed Apr 29, 2024
1 parent d5ee712 commit 2aa5cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CI/build/arduino-cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
# error or fatal error
fork_pattern = re.compile(r"^Error during build: fork/exec")
error_pattern = re.compile(r":\d+:\d*:?\s.*error:\s|^Error:|fatal error:")
ld_pattern = re.compile("arm-none-eabi/bin/ld\.?e?x?e?:")
ld_pattern = re.compile(r"arm-none-eabi/bin/ld\.?e?x?e?:")
overflow_pattern = re.compile(
r"(will not fit in |section .+ is not within )?region( .+ overflowed by [\d]+ bytes)?"
)
Expand Down

0 comments on commit 2aa5cde

Please sign in to comment.