From 355a6b937d07a95cb0b753ef513bcaad09128dea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Tri=C3=B1anes?= Date: Fri, 2 May 2025 15:45:16 +0200 Subject: [PATCH] nushell: throw instead of abort (#6870) --- modules/lib/nushell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lib/nushell.nix b/modules/lib/nushell.nix index e5cfe92e0..6d1ec463e 100644 --- a/modules/lib/nushell.nix +++ b/modules/lib/nushell.nix @@ -81,5 +81,5 @@ rec { }${outroSpace}}" ) else - abort "nushell.toNushell: type ${lib.typeOf v} is unsupported"; + throw "nushell.toNushell: type ${lib.typeOf v} is unsupported"; }