From eaeea28999b457d3a0038142e33ff3cd487f8fa7 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Tue, 27 Aug 2024 14:06:46 +0100 Subject: fix(init): make maintainer.yaml copy clearer as this has reduced in importance as the user begins by selecting a trusted maintainer --- src/sub_commands/init.rs | 2 +- tests/init.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sub_commands/init.rs b/src/sub_commands/init.rs index bb437a5..4958536 100644 --- a/src/sub_commands/init.rs +++ b/src/sub_commands/init.rs @@ -373,7 +373,7 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> { } ); println!( - "this optional file enables existing contributors to automatically fetch your repo event (instead of one from a pubkey pretending to be the maintainer)" + "this optional file helps in identifying who the maintainers are over time through the commit history" ); } Ok(()) diff --git a/tests/init.rs b/tests/init.rs index 896cef8..c8390e3 100644 --- a/tests/init.rs +++ b/tests/init.rs @@ -14,7 +14,7 @@ fn expect_msgs_first(p: &mut CliTester) -> Result<()> { fn expect_msgs_after(p: &mut CliTester) -> Result<()> { p.expect_after_whitespace("maintainers.yaml created. commit and push.\r\n")?; p.expect( - "this optional file enables existing contributors to automatically fetch your repo event (instead of one from a pubkey pretending to be the maintainer)\r\n", + "this optional file helps in identifying who the maintainers are over time through the commit history\r\n", )?; Ok(()) } -- cgit v1.2.3