Skip to content

Commit 6e06388

Browse files
committed
Fix suggestions for x.py setup
1 parent 5849a7e commit 6e06388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/setup.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ pub fn setup(src_path: &Path, include_name: &str) {
4040
println!("`x.py` will now use the configuration at {}", include_path);
4141

4242
let suggestions = match include_name {
43-
"codegen" | "compiler" => &["check", "build", "test"][..],
43+
"llvm" | "codegen" | "compiler" => &["check", "build", "test"][..],
4444
"library" => &["check", "build", "test library/std", "doc"],
45-
"user" => &["dist", "build"],
45+
"maintainer" | "user" => &["dist", "build"],
4646
_ => return,
4747
};
4848

0 commit comments

Comments
 (0)