Skip to content

Commit

Permalink
fix(aptitude): missing / for share/keyrings (comtrya#434)
Browse files Browse the repository at this point in the history
`sharekeyrings` -> `share/keyrings`

Signed-off-by: Noel Georgi <[email protected]>
  • Loading branch information
frezbo authored Aug 15, 2024
1 parent bc6680e commit 04a94e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/actions/package/providers/aptitude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl PackageProvider for Aptitude {
let key = repository.clone().key.unwrap();

let key_name = key.name.unwrap_or_else(|| digest(&*key.url));
let key_path = format!("/usr/sharekeyrings/{}.asc", key_name);
let key_path = format!("/usr/share/keyrings/{}.asc", key_name);

signed_by = format!("signed-by={}", key_path);

Expand Down

0 comments on commit 04a94e0

Please sign in to comment.