@@ -79,12 +79,17 @@ fn main() {
79
79
println ! ( "{suggestion}" ) ;
80
80
}
81
81
82
+ println ! ( "suggest setup completed" ) ;
83
+
82
84
let pre_commit = config. src . join ( ".git" ) . join ( "hooks" ) . join ( "pre-commit" ) ;
83
85
let dump_bootstrap_shims = config. dump_bootstrap_shims ;
84
86
let out_dir = config. out . clone ( ) ;
85
87
88
+ println ! ( "building" ) ;
86
89
Build :: new ( config) . build ( ) ;
90
+ println ! ( "build completed" ) ;
87
91
92
+ println ! ( "checking setup" ) ;
88
93
if suggest_setup {
89
94
println ! ( "WARNING: you have not made a `config.toml`" ) ;
90
95
println ! (
@@ -94,6 +99,7 @@ fn main() {
94
99
} else if let Some ( suggestion) = & changelog_suggestion {
95
100
println ! ( "{suggestion}" ) ;
96
101
}
102
+ println ! ( "checking setup completed" ) ;
97
103
98
104
// Give a warning if the pre-commit script is in pre-commit and not pre-push.
99
105
// HACK: Since the commit script uses hard links, we can't actually tell if it was installed by x.py setup or not.
@@ -107,6 +113,7 @@ fn main() {
107
113
Consider moving it to .git/hooks/pre-push instead, which runs less often."
108
114
) ;
109
115
}
116
+ println ! ( "pre-commit check completed" ) ;
110
117
111
118
if suggest_setup || changelog_suggestion. is_some ( ) {
112
119
println ! ( "NOTE: this message was printed twice to make it more likely to be seen" ) ;
@@ -134,6 +141,8 @@ fn main() {
134
141
t ! ( file. write_all( lines. join( "\n " ) . as_bytes( ) ) ) ;
135
142
}
136
143
}
144
+
145
+ println ! ( "dump bootstrap shims completed" ) ;
137
146
}
138
147
139
148
fn check_version ( config : & Config ) -> Option < String > {
0 commit comments