Skip to content

Commit 735d6c4

Browse files
fix(config): typo correction (#345)
Co-authored-by: Fabian-Lars <118197967+FabianLars-crabnebula@users.noreply.github.com>
1 parent c93891d commit 735d6c4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"cargo-packager": patch
3+
---
4+
5+
Fixed a typo on the `digest_algorithm` config (was `digest-algorithim`).

crates/packager/src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@ impl NsisConfig {
13981398
#[non_exhaustive]
13991399
pub struct WindowsConfig {
14001400
/// The file digest algorithm to use for creating file signatures. Required for code signing. SHA-256 is recommended.
1401-
#[serde(alias = "digest-algorithim", alias = "digest_algorithim")]
1401+
#[serde(alias = "digest-algorithm", alias = "digest_algorithm")]
14021402
pub digest_algorithm: Option<String>,
14031403
/// The SHA1 hash of the signing certificate.
14041404
#[serde(alias = "certificate-thumbprint", alias = "certificate_thumbprint")]

0 commit comments

Comments
 (0)