Skip to content

Commit 93307ec

Browse files
committed
Add link to generator at end of agenda output
1 parent 3ad36e2 commit 93307ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/agenda-generator/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ fn main() -> Result<()> {
3535
- [ ] Reply to all issues/PRs discussed in this meeting, or add them to the [open action items](https://hackmd.io/ovrbJj6CRduRgSA0Wzg2zg).
3636
"
3737
);
38+
39+
println!("_Generated by [fully-automatic-rust-libs-team-triage-meeting-agenda-generator](https://github.com/rust-lang/libs-team/tree/main/tools/agenda-generator)_");
3840
Ok(())
3941
}
4042

@@ -53,14 +55,15 @@ fn show_fcps() -> Result<()> {
5355
"KodrAus",
5456
"m-ou-se",
5557
"sfackler",
58+
"yaahc",
5659
]
5760
.iter()
5861
.map(|&r| (r, 0))
5962
.collect();
6063

6164
loop {
6265
let line = p.next().unwrap();
63-
if line.starts_with("<h4>") {
66+
if line.starts_with("<h4>") || line.starts_with("</html>") {
6467
break;
6568
}
6669
if line.trim() == "<li>" {

0 commit comments

Comments
 (0)