Skip to content

Commit fd9cd84

Browse files
committed
Don't report build-scripts and proc-macros are metadata progress
1 parent 476d043 commit fd9cd84

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/project-model/src/build_scripts.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ impl WorkspaceBuildScripts {
154154
Some(&it) => it,
155155
None => return,
156156
};
157+
progress(format!("running build-script: {}", workspace[package].name));
158+
157159
let cfgs = {
158160
let mut acc = Vec::new();
159161
for cfg in message.cfgs {
@@ -189,7 +191,7 @@ impl WorkspaceBuildScripts {
189191
None => return,
190192
};
191193

192-
progress(format!("metadata {}", message.target.name));
194+
progress(format!("building proc-macros: {}", message.target.name));
193195

194196
if message.target.kind.iter().any(|k| k == "proc-macro") {
195197
// Skip rmeta file

0 commit comments

Comments
 (0)