Skip to content

Commit 512d5ae

Browse files
committed
Don't escape serde error messages
1 parent c3526ff commit 512d5ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ mod binary {
255255
let err = format!(
256256
"failed to parse bootloader config in {}:\n\n{}",
257257
path,
258-
err.to_string().escape_default()
258+
err.to_string()
259259
);
260260
quote! {
261261
compile_error!(#err)

0 commit comments

Comments
 (0)