...
This commit is contained in:
@@ -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),
|
||||
|
Reference in New Issue
Block a user