remove dbg

This commit is contained in:
Conrad Ludgate 2023-03-23 08:30:01 +00:00
parent 712a85a9a4
commit a8c54fd569
No known key found for this signature in database
GPG Key ID: 197E3CACA1C980B5

View File

@ -119,7 +119,7 @@ pub async fn refresh(db: &mut dyn Database) -> Result<()> {
// delete the index
let data_dir = atuin_common::utils::data_dir();
let tantivy_dir = dbg!(data_dir.join("tantivy"));
let tantivy_dir = data_dir.join("tantivy");
fs_err::remove_dir_all(tantivy_dir)?;
tokio::task::spawn_blocking(|| {