Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
style: respect line len limit
Browse files Browse the repository at this point in the history
  • Loading branch information
eopb committed Jun 15, 2021
1 parent de56496 commit 3a31df8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion utils/wasm-builder/src/prerequisites.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,12 @@ fn check_wasm_toolchain_installed(
let target_path = temp.path().join("target").display().to_string();

let mut build_cmd = cargo_command.command();
build_cmd.args(&["build", "--target=wasm32-unknown-unknown", "--manifest-path", &manifest_path, "--target-dir", &target_path]);
build_cmd.args(&[
"build",
"--target=wasm32-unknown-unknown",
"--manifest-path", &manifest_path,
"--target-dir", &target_path]
);

if super::color_output_enabled() {
build_cmd.arg("--color=always");
Expand Down

0 comments on commit 3a31df8

Please sign in to comment.