diff --git a/src/commands/index.rs b/src/commands/index.rs index 01232837..cf47bab4 100644 --- a/src/commands/index.rs +++ b/src/commands/index.rs @@ -23,7 +23,7 @@ pub fn handle( if force || !db_path.exists() { build_index(&project_name, &build_path, &db_path, config)?; - println!("{} {} {}", "✔", style("Index built:" ).green(), style(db_path.display()).white().bold()); + println!("✔ {} {}", style("Index built:" ).green(), style(db_path.display()).white().bold()); } else { println!("{} {}", style("↩ Index already exists").yellow(), style("(use --force to rebuild)").dim()); }