Skip to content

Commit e2cf6f2

Browse files
committed
fix rustflags being concatenated without spaces between them
1 parent 0f58781 commit e2cf6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docbuilder/rustwide_builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ impl RustwideBuilder {
398398
"RUSTFLAGS",
399399
metadata
400400
.rustc_args
401-
.map(|args| args.join(""))
401+
.map(|args| args.join(" "))
402402
.unwrap_or("".to_owned()),
403403
)
404404
.env("RUSTDOCFLAGS", rustdoc_flags.join(" "))

0 commit comments

Comments
 (0)