Skip to content

Commit

Permalink
Clean up some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
andriygm committed Oct 16, 2024
1 parent 5ddbe80 commit e694d61
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cli/src/fill.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ fn collect_data(
collected.insert(hook.key.clone(), value.to_string());
}

println!(" {}\n", "✅ done");

Ok(collected)
}

Expand Down Expand Up @@ -228,12 +226,12 @@ pub fn run(
);
}

println!("📮 Preparing output path\n");

let out_path = match &out_path {
Some(path) => path,
// Cannot use CustomType here because PathBuf does not implement ToString
None => {
println!("📮 Collecting output path\n");

let path = &Text::new("Enter the output path")
.with_help_message("The path to output the filled project")
.with_autocomplete(FilePathCompleter::default())
Expand Down

0 comments on commit e694d61

Please sign in to comment.