fix(updater): Escape msi path string (#1495)

* fix(updater): Escape msi path string

* fmt
This commit is contained in:
Fabian-Lars
2024-06-25 03:12:57 +02:00
committed by GitHub
parent 9db5a6a0f5
commit 29751ee939
3 changed files with 18 additions and 2 deletions
+7 -1
View File
@@ -2,7 +2,13 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
const COMMANDS: &[&str] = &["notify", "request_permission", "is_permission_granted", "register_action_types", "register_listener"];
const COMMANDS: &[&str] = &[
"notify",
"request_permission",
"is_permission_granted",
"register_action_types",
"register_listener",
];
fn main() {
if let Err(error) = tauri_plugin::Builder::new(COMMANDS)