From c4320ed1bc1b0ccb5bacb83040807ccc5216b574 Mon Sep 17 00:00:00 2001 From: Joep Meindertsma Date: Tue, 19 Apr 2022 01:56:02 +0200 Subject: [PATCH] Improve docs for updater signing CLI usage (#3881) --- core/tauri/src/updater/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/tauri/src/updater/mod.rs b/core/tauri/src/updater/mod.rs index 92d95f9b2..4d39e018f 100644 --- a/core/tauri/src/updater/mod.rs +++ b/core/tauri/src/updater/mod.rs @@ -404,9 +404,11 @@ //! //! The *Private key* (privkey) is used to sign your update and should NEVER be shared with anyone. Also, if you lost this key, you'll NOT be able to publish a new update to the current user base (if pubkey is set in tauri.conf.json). It's important to save it at a safe place and you can always access it. //! -//! To generate your keys you need to use the Tauri cli. +//! To generate your keys you need to use the Tauri cli. //! //! ```bash +//! # Generate the keys, follow the instructions +//! tauri signer generate //! tauri signer sign -g -w ~/.tauri/myapp.key //! ``` //!