From 163c2dbd2057ef03b0519466a9e2b4fb202d9451 Mon Sep 17 00:00:00 2001 From: Phil Crockett Date: Sun, 4 Jan 2026 07:40:59 +0100 Subject: [PATCH] Non-conflicting .list filename in install instructions `fury.list` is an example filename that comes from Gemfury's APT repo documentation. However the name is entirely too generic, and can easily conflict with other projects who also host their APT repos on Gemfury. Making the name Nushell-specific makes it less likely that users will blow away existing Gemfury repo configurations by accident. --- book/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/installation.md b/book/installation.md index 86c74551f16..50cdc7ea9a0 100644 --- a/book/installation.md +++ b/book/installation.md @@ -41,7 +41,7 @@ For Debian & Ubuntu: ```sh 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 +echo "deb [signed-by=/etc/apt/keyrings/fury-nushell.gpg] https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury-nushell.list sudo apt update sudo apt install nushell ```