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 e9920ef commit a355507Copy full SHA for a355507
src/tools/expand-yaml-anchors/src/main.rs
@@ -76,7 +76,11 @@ impl App {
76
self.path(&path),
77
self.path(&dest_path)
78
),
79
- Mode::Check => format!("{} is not up to date", self.path(&dest_path)),
+ Mode::Check => format!(
80
+ "{} is not up to date; please run \
81
+ `x.py run src/tools/expand-yaml-anchors`.",
82
+ self.path(&dest_path)
83
+ ),
84
})?;
85
}
86
0 commit comments