Skip to content

Commit 145c619

Browse files
committed
fmt
1 parent e4b75a6 commit 145c619

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

fendermint/actors-custom-car/build.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,11 @@ fn build_all_wasm_blobs(
219219
.iter()
220220
.map(|actor| format!("-p={}", actor.package_name));
221221

222-
echo!("actors-custom-car", purple, "Target: channel={channel} target={target}");
222+
echo!(
223+
"actors-custom-car",
224+
purple,
225+
"Target: channel={channel} target={target}"
226+
);
223227

224228
let rustup = which::which("rustup")?;
225229

@@ -294,7 +298,9 @@ fn print_cargo_rerun_if_dependency_instructions(
294298
let cargo_lock = find_cargo_lock(out_dir).ok_or_eyre("Couldn't find Cargo.lock")?;
295299
rerun_if_changed(&cargo_lock);
296300

297-
let workspace_dir = cargo_lock.parent().expect("A file always should have a parent");
301+
let workspace_dir = cargo_lock
302+
.parent()
303+
.expect("A file always should have a parent");
298304

299305
let metadata = create_metadata_command(workspace_dir.join("Cargo.toml")).exec()?;
300306

0 commit comments

Comments
 (0)