From 624c485d68f9bee39d8a34940e87acbae2800c11 Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Tue, 29 Apr 2025 21:48:19 +0200 Subject: [PATCH] fix(shell): add match arm for Nushell's binary name --- television/utils/shell.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/television/utils/shell.rs b/television/utils/shell.rs index 6dbdd33..b3381ac 100644 --- a/television/utils/shell.rs +++ b/television/utils/shell.rs @@ -66,6 +66,7 @@ impl Shell { Shell::Fish => "fish", Shell::PowerShell => "powershell", Shell::Cmd => "cmd", + Shell::Nu => "nu", } } }