This commit is contained in:
2025-05-13 09:35:01 +03:00
parent d609aa8094
commit 29ccc54a4d
3 changed files with 40 additions and 7 deletions

View File

@@ -246,7 +246,7 @@ fn main() -> Result<()> {
for page in pages {
match collection.page_get_path(&page) {
Ok(path) => {
println!(" - {} => Redis: {}:collections:{} / {}", path, doctree_name, collection.name, page);
println!(" - {}", path);
},
Err(_) => {
println!(" - {}", page);
@@ -271,7 +271,7 @@ fn main() -> Result<()> {
println!(" Images ({}):", images.len());
for image in images {
println!(" - {} => Redis: {}:collections:{} / {}", image, doctree_name, collection.name, image);
println!(" - {}", image);
}
// Filter other files
@@ -285,7 +285,7 @@ fn main() -> Result<()> {
println!(" Other Files ({}):", other_files.len());
for file in other_files {
println!(" - {} => Redis: {}:collections:{} / {}", file, doctree_name, collection.name, file);
println!(" - {}", file);
}
},
Err(e) => println!(" Error listing files: {}", e),