Skip to content

Commit

Permalink
fix: Trigger a release of c2patool to pick up latest c2pa-rs changes (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten-adobe authored Jan 31, 2025
1 parent ee3aa43 commit ee854de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#![doc = include_str!("../README.md")]

/// Tool to display and create C2PA manifests
/// Tool to display and create C2PA manifests.
///
/// A file path to an asset must be provided. If only the path
/// is given, this will generate a summary report of any claims
Expand Down Expand Up @@ -195,7 +195,7 @@ struct ManifestDef {
ingredient_paths: Option<Vec<PathBuf>>,
}

// convert certain errors to output messages
// Convert certain errors to output messages.
fn special_errs(e: c2pa::Error) -> anyhow::Error {
match e {
Error::JumbfNotFound => anyhow!("No claim found"),
Expand All @@ -206,7 +206,7 @@ fn special_errs(e: c2pa::Error) -> anyhow::Error {
}
}

// normalize extensions so we can compare them
// Normalize extensions so we can compare them.
fn ext_normal(path: &Path) -> String {
let ext = path
.extension()
Expand Down

0 comments on commit ee854de

Please sign in to comment.