We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7564d commit 424e09bCopy full SHA for 424e09b
.gitignore
@@ -102,3 +102,4 @@ flake.lock
102
/default.nix
103
104
# Before adding new lines, see the comment at the top.
105
+*.txt
src/bootstrap/src/bin/main.rs
@@ -96,7 +96,8 @@ fn main() {
96
let out_dir = config.out.clone();
97
98
debug!("creating new build based on config");
99
- Build::new(config).build();
+ let mut build = Build::new(config);
100
+ build.build();
101
if suggest_setup {
println!("WARNING: you have not made a `bootstrap.toml`");
@@ -147,6 +148,8 @@ fn main() {
147
148
t!(file.write_all(lines.join("\n").as_bytes()));
149
}
150
151
+
152
+ build.report_summary();
153
154
155
fn check_version(config: &Config) -> Option<String> {
0 commit comments