upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sub_commands/init.rs15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/sub_commands/init.rs b/src/sub_commands/init.rs
index 4b35d28..edaca15 100644
--- a/src/sub_commands/init.rs
+++ b/src/sub_commands/init.rs
@@ -205,15 +205,12 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> {
205 }; 205 };
206 'outer: loop { 206 'outer: loop {
207 if !dont_ask { 207 if !dont_ask {
208 maintainers_string = Interactor::default() 208 println!("{}", &maintainers_string);
209 .input( 209 maintainers_string = Interactor::default().input(
210 PromptInputParms::default() 210 PromptInputParms::default()
211 .with_prompt("maintainers") 211 .with_prompt("maintainers")
212 .with_default(maintainers_string), 212 .with_default(maintainers_string),
213 )? 213 )?;
214 .split(' ')
215 .map(std::string::ToString::to_string)
216 .collect();
217 } 214 }
218 let mut maintainers: Vec<PublicKey> = vec![]; 215 let mut maintainers: Vec<PublicKey> = vec![];
219 for m in maintainers_string.split(' ') { 216 for m in maintainers_string.split(' ') {