From 4a6d12b707f31b87406a7cec0bc70084682c2954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20H=E1=BB=93ng=20Qu=C3=A2n?= Date: Mon, 24 Nov 2025 10:59:13 +0700 Subject: [PATCH] Use explicit key for Debian / Ubuntu repo --- book/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/installation.md b/book/installation.md index 22d16d550f0..86c74551f16 100644 --- a/book/installation.md +++ b/book/installation.md @@ -40,8 +40,8 @@ For Windows: For Debian & Ubuntu: ```sh -curl -fsSL https://apt.fury.io/nushell/gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/fury-nushell.gpg -echo "deb https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury.list +wget -qO- https://apt.fury.io/nushell/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/fury-nushell.gpg +echo "deb [signed-by=/etc/apt/keyrings/fury-nushell.gpg] https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury.list sudo apt update sudo apt install nushell ```