Skip to content
Prev Previous commit
Next Next commit
Revert "Fmt"
This reverts commit 8092386.
  • Loading branch information
ascjones committed Aug 12, 2022
commit e610743da47a5297748c0d14e38e460b07b53ff0
17 changes: 9 additions & 8 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,14 +168,15 @@ fn build_and_zip_dylint_driver(
const NIGHTLY_TOOLCHAIN: &str = "nightly-2022-06-30";

let mut install_toolchain = Command::new("rustup");
install_toolchain.args(vec![
"toolchain",
"install",
NIGHTLY_TOOLCHAIN,
"--component",
"llvm-tools-preview",
"rustc-dev",
]);
install_toolchain
.args(vec![
"toolchain",
"install",
NIGHTLY_TOOLCHAIN,
"--component",
"llvm-tools-preview",
"rustc-dev",
]);

let child = install_toolchain
// Capture the stdout to return from this function as bytes
Expand Down