Skip to content

Commit

Permalink
chore: version 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vicanso committed Jan 27, 2024
1 parent 62b0987 commit 4db45ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diving"
version = "0.6.3"
version = "0.6.4"
authors = ["Tree Xie <[email protected]>"]
edition = "2021"
keywords = ["diving", "image", "dive"]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async fn analyze(image: String, output_file: String) -> Result<(), String> {
// 命令行模式下清除过期数据
clear_blob_files().await.map_err(|item| item.to_string())?;
let image_info = parse_image_info(&image);
let mut result = analyze_docker_image(image_info)
let result = analyze_docker_image(image_info)
.await
.map_err(|item| item.to_string())?;
if is_ci() || !output_file.is_empty() {
Expand Down

0 comments on commit 4db45ab

Please sign in to comment.