Skip to content

Commit 17e7ff5

Browse files
committed
cargo fmt
1 parent fee223d commit 17e7ff5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ci-gen/src/main.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,12 @@ fn job(channel: RustToolchain, os: Os, features: Features) -> Job {
160160
if os == WINDOWS {
161161
env.push(("VCPKGRS_DYNAMIC".to_owned(), "1".to_owned()));
162162
};
163-
let id = format!("{}-{}-{}", os.name, channel.to_string().replace(".", "-"), features.id());
163+
let id = format!(
164+
"{}-{}-{}",
165+
os.name,
166+
channel.to_string().replace(".", "-"),
167+
features.id()
168+
);
164169
let name = format!("{} {} ({})", os.name, channel, features.name());
165170
Job {
166171
id,

0 commit comments

Comments
 (0)