Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 0db9094

Browse files
committed
Rustfmt
1 parent d489fb9 commit 0db9094

File tree

4 files changed

+187
-58
lines changed

4 files changed

+187
-58
lines changed

build_system/build_sysroot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::fs;
22
use std::path::{Path, PathBuf};
33
use std::process::{self, Command};
44

5-
use super::rustc_info::{get_file_name, get_wrapper_file_name, get_rustc_version};
5+
use super::rustc_info::{get_file_name, get_rustc_version, get_wrapper_file_name};
66
use super::utils::{spawn_and_wait, try_hard_link};
77
use super::SysrootKind;
88

build_system/mod.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ mod build_sysroot;
77
mod config;
88
mod prepare;
99
mod rustc_info;
10-
mod utils;
1110
mod tests;
11+
mod utils;
1212

1313
fn usage() {
1414
eprintln!("Usage:");
@@ -122,7 +122,8 @@ pub fn main() {
122122
process::exit(1);
123123
}
124124

125-
let cg_clif_build_dir = build_backend::build_backend(channel, &host_triple, use_unstable_features);
125+
let cg_clif_build_dir =
126+
build_backend::build_backend(channel, &host_triple, use_unstable_features);
126127
match command {
127128
Command::Test => {
128129
tests::run_tests(
@@ -133,7 +134,7 @@ pub fn main() {
133134
&host_triple,
134135
&target_triple,
135136
);
136-
},
137+
}
137138
Command::Build => {
138139
build_sysroot::build_sysroot(
139140
channel,

0 commit comments

Comments
 (0)