Skip to content

Commit 1c53640

Browse files
authored
fix(schema): update hardened_runtime description to include link (#13512)
1 parent e7f2d8c commit 1c53640

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

crates/tauri-cli/config.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3436,7 +3436,7 @@
34363436
]
34373437
},
34383438
"hardenedRuntime": {
3439-
"description": "Whether the codesign should enable [hardened runtime] (for executables) or not.\n\n [hardened runtime]: <https://developer.apple.com/documentation/security/hardened_runtime>",
3439+
"description": "Whether the codesign should enable [hardened runtime](https://developer.apple.com/documentation/security/hardened_runtime) (for executables) or not.",
34403440
"default": true,
34413441
"type": "boolean"
34423442
},

crates/tauri-schema-generator/schemas/config.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3436,7 +3436,7 @@
34363436
]
34373437
},
34383438
"hardenedRuntime": {
3439-
"description": "Whether the codesign should enable [hardened runtime] (for executables) or not.\n\n [hardened runtime]: <https://developer.apple.com/documentation/security/hardened_runtime>",
3439+
"description": "Whether the codesign should enable [hardened runtime](https://developer.apple.com/documentation/security/hardened_runtime) (for executables) or not.",
34403440
"default": true,
34413441
"type": "boolean"
34423442
},

crates/tauri-utils/src/config.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -636,9 +636,7 @@ pub struct MacConfig {
636636
/// Identity to use for code signing.
637637
#[serde(alias = "signing-identity")]
638638
pub signing_identity: Option<String>,
639-
/// Whether the codesign should enable [hardened runtime] (for executables) or not.
640-
///
641-
/// [hardened runtime]: <https://developer.apple.com/documentation/security/hardened_runtime>
639+
/// Whether the codesign should enable [hardened runtime](https://developer.apple.com/documentation/security/hardened_runtime) (for executables) or not.
642640
#[serde(alias = "hardened-runtime", default = "default_true")]
643641
pub hardened_runtime: bool,
644642
/// Provider short name for notarization.

0 commit comments

Comments
 (0)